当前位置:K88软件开发文章中心编程语言.NET.NET01 → 文章内容

C#制作公章

减小字体 增大字体 作者:佚名  来源:翔宇亭IT乐园  发布时间:2018-12-31 11:45:38

:2010-09-10 18:06:00

本文借助C#的绘图功能讲解了制作公章的方法:

private void button1_Click(object sender, System.EventArgs e)
        {
                Graphics g = this.CreateGraphics();
                g.Clear(Color.White);
                //g.InterpolationMode = InterpolationMode.HighQualityBicubic;
                g.CompositingQuality = CompositingQuality.HighQuality;
                g.SmoothingMode = SmoothingMode.HighQuality;

                int radius = 200;
                CircularTextualLayout ctl = new CircularTextualLayout();
                ctl.Radius = radius;
                Point location = new Point(50, 20);
                //ctl.CenterPoint = new Point(location.X + radius, location.Y + radius);
                ctl.TextDrawing = "翔宇亭乐园欢迎您";

                float arcAngle = 270;
                ctl.ArcAngle = arcAngle;
                ctl.AngleStart = -arcAngle/2 + arcAngle/2/ctl.TextDrawing.Length;
                ctl.TextFontInner = new Font("方正姚体", radius/3.2f);
                ctl.RatioX = 0.6f;
                ctl.BorderWidth = (int)(ctl.Radius / 40);
                //ctl.IsBold = false;
                ctl.Location = location;
                ctl.WordsColor = Color.FromArgb(250, Color.Red);
                ctl.BorderColor = Color.FromArgb(250, Color.Red);
                ctl.RectColor = Color.FromArgb(250, Color.Red);
                ctl.Draw(g);

                g.Dispose();
        }



C#制作公章