使用Matrix设置字体

废话少说,看代码
  1.             e.Graphics.SmoothingMode = SmoothingMode.AntiAlias;
  2.             GraphicsPath gPath = new GraphicsPath();
  3.             //GraphicsPath gPath2 = new GraphicsPath();
  4.             gPath.AddString("我的字体", Font.FontFamily, 0, 20, new Point(100, 50), new StringFormat());
  5.             e.Graphics.FillPath(new SolidBrush(Color.Blue), gPath);
  6.             float scaleX = 1;
  7.             float scaleY = 2f;
  8.             RectangleF recF = gPath.GetBounds();
  9.             //放大相应的倍数,并回到原字符串的启示位置。
  10.             /*matrix放大了相应的x,y坐标。*/
  11.             Matrix matrix = new Matrix(scaleX, 0, 0, scaleY, recF.X - recF.X * scaleX, recF.Y - recF.Y * scaleY);
  12.             //matrix.Scale(2, 3, MatrixOrder.Append);
  13.             gPath.Transform(matrix);
  14.             
  15.             e.Graphics.FillPath(new SolidBrush(Color.Red), gPath);
  16.             ScaleExample(e);

你可能感兴趣的:(Matrix)