Programing/C#
Graphics Text Rotate 글자 회전
즐거운 개발자
2013. 12. 18. 17:59
반응형
using (Matrix matrix = new Matrix())
{
matrix .RotateAt(90f ,new PointF(원점));
e.Graphics.MultiplyTransform(matrix );
e.Graphics.DrawString("TestString", this.Font, Brushes.Black, 100, 100);
matrix .Invert();
e.Graphics.MultiplyTransform(matrix );
}