Graphics: Transform : Graphics « 2D Graphics « C# / C Sharp






Graphics: Transform

 

using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;
   
class MobyDick: Form
{
     public static void Main()
     {
          Application.Run(new MobyDick());
     }
     public MobyDick()
     {
          ResizeRedraw = true; 
     }
     protected override void OnPaint(PaintEventArgs pea)
     {
          DoPage(pea.Graphics, ForeColor,ClientSize.Width, ClientSize.Height);
     }     
     protected void DoPage(Graphics grfx, Color clr, int cx, int cy)
     {
          grfx.Transform = new Matrix(1, 1, -1, 1, 0, 0);
          grfx.DrawString("abc", Font, new SolidBrush(clr), 
                          new Rectangle(0, 0, cx, cy));
     }
}

 








Related examples in the same category

1.Graphics: TranslateClip
2.Graphics: SetClip
3.Scribble with MouseScribble with Mouse
4.FillPolygon: Alternate and Winding Fill Modes
5.One-Inch Ellipse
6.Graphics: FillRectangles
7.Graphics: FillRectangle
8.Graphics: FillEllipse
9.Wide Polyline: DrawLines
10.Line and Arc Combo
11.Graphics: FillClosedCurve
12.Bezier Art: DrawBeziers
13.Graphics: MeasureString
14.Clear a Graphics
15.Graphics: DrawRectangles
16.Graphics: DrawRectangle
17.Draw Ellipse
18.Graphics: DrawArc
19.Graphics: DrawPie
20.Draw a Rectangle
21.Draw an Image
22.FillEllipse: Red Traffic Light
23.Graphics: Draw an Icon
24.Graphics: DrawString
25.Use different Font object to draw a line of text
26.Graphics: ScaleTransform
27.Graphics: TranslateTransform
28.Graphics: Pen Alignment
29.Graphics: PageScale
30.Graphics: PageUnit
31.DpiY and DpiX
32.PixelOffsetMode
33.Paint along points in a list pointsPaint along points in a list points
34.Picture Cube: DrawImage
35.Clipping: ResetClip
36.Rotate the text 45 degrees clockwise then Translate the text 150 pixels horizontally
37.Transform and RotateTransform in a loop
38.Apply the scaling transformation(scale subsequent operations by 2x horizontally and 3x vertically)
39.Translate the text 150 pixels horizontally and 75 vertically
40.Reset the transformation Translate by 30 pixels in vertical direction
41.Rotate the text through 45 degrees
42.Fill the area 'bounded' by the path
43.DrawImage with destination points
44.DrawImage with size
45.Graphics.SmoothingMode
46.DrawPie with offset
47.TransformPoints
48.Fill a Rectangle with TextureBrush
49.Fill a Rectangle with LinearGradientBrush