pdf rotated text w/ Acrobat 6.0
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, I'm having a problem printing my rotated text with Acrobat 6.0. For some reason, the pdf print out scales the rotated text to a much larger value. To draw and rotate the text, I'm using the following: GraphicsContainer container; container = g.BeginContainer(); Matrix myMatrix = new Matrix(); myMatrix = g.Transform; myMatrix.RotateAt(m_Rotation, m_RotationPoint); g.Transform = myMatrix; g.DrawString(m_Text, m_Font, myBrush, myRect); g.EndContainer(container); Rotated shapes are printed out properly, its just the text with the problem. I'm not sure if this is an issue with gdi or what?