博客园  :: 首页  :: 新随笔  :: 管理

投影效果代码

Posted on 2008-09-25 17:22  tianfu  阅读(348)  评论(0编辑  收藏  举报
private void Form1_Paint(object sender, PaintEventArgs e)
{
//投影文字
Graphics g = this.CreateGraphics();
//设置文本输出质量
g.TextRenderingHint = TextRenderingHint.ClearTypeGridFit;
g.SmoothingMode 
= SmoothingMode.AntiAlias;
Font newFont 
= new Font("Times New Roman"48);
Matrix matrix 
= new Matrix();
//投射
matrix.Shear(-1.5f0.0f);
//缩放
matrix.Scale(10.5f);
//平移
matrix.Translate(13088);
//对绘图平面实施坐标变换、、
g.Transform = matrix;
SolidBrush grayBrush 
= new SolidBrush(Color.Gray);
SolidBrush colorBrush 
= new SolidBrush(Color.BlueViolet);
string text = "博客园";
//绘制阴影
g.DrawString(text, newFont, grayBrush, new PointF(030));
g.ResetTransform();
//绘制前景
g.DrawString(text, newFont, colorBrush, new PointF(030));
}