반응형
     
      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 );

            }

+ Recent posts