• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C#绘图三种方式

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
如果你想在窗体上进行绘画。通常会使用以下方法.
方法1,利用控件或窗体的paint事件中的painEventArgs
private void form1_Paint(object sender, PaintEventArgs e)
{
Graphics g = e.Graphics;//创建画板,
}
方法2直接重载控件或窗体的OnPaint方法
protected override void OnPaint(PaintEventArgs e)
{
Graphics g = e.Graphics;
}
方法3调用某控件的CreateGraphics方法
Graphics g = this.CreateGraphics();

方法4 调用Graphics类的FromImage静态方法
在需要更改已存在的图像时,通常会使用此方法
Image img = Image.FromFile("g1.jpg");//建立Image对象
Graphics g = Graphics.FromImage(img);//创建Graphics对象

 

public Bitmap Create(int[] arry)
        {
            //获得数组中最大值
            int max = 0;
            for (int i = 0; i < arry.Length; i++)
            {
                if (arry[i] > max)
                    max = arry[i];
            }
            Bitmap bitmap = new Bitmap(arry.Length, max+10);
            Graphics g = Graphics.FromImage(bitmap);//创建Graphics对象
            g.Clear(Color.White);
            Pen curPen = new Pen(Brushes.Black, 1);

            // g.DrawLine(curPen, 10, 0, 10, 30); //划线 ; 水平坐标形同 10,0,10,30;  y坐标不同

            for (int i = 0; i < arry.Length; i++)
            {
                g.DrawLine(curPen, i, arry[i], i, 0); //划线 ; 水平坐标形同 10,0,10,30;  y坐标不同
            }

            return bitmap;
        }

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#发送Post请求,带参数,不带参数,指定参数发布时间:2022-07-10
下一篇:
C#类对象字段和属性发布时间:2022-07-10
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap