draw string upside down

  • Thread starter Thread starter Cc
  • Start date Start date
Cc,
Use the RotateTransform method of the Graphics object to rotate the text 180
degrees. You may also need to use TranslateTransform to shift the origin
back to a location in the client rectangle of the window.

Charles Petzold's book "Programming Microsoft Windows with Microsoft Visual
Basic .NET" has a lengthy chapter on drawing with rotated text & various
other effects.

The Bob Powell's GDI+ FAQ has similar information:
http://www.bobpowell.net/gdiplus_faq.htm

Hope this helps
Jay
 
Back
Top