c# Graphics使用方法(画圆写字代码)
程序员文章站
2024-02-18 23:18:58
画填充圆: 复制代码 代码如下:graphics gra = this.pi...
画填充圆:
复制代码 代码如下:
graphics gra = this.picturebox1.creategraphics();
gra.smoothingmode = system.drawing.drawing2d.smoothingmode.antialias;
brush bush = new solidbrush(color.green);//填充的颜色
gra.fillellipse(bush, 10, 10, 100, 100);//画填充椭圆的方法,x坐标、y坐标、宽、高,如果是100,则半径为50
画圆圈:
复制代码 代码如下:
graphics gra = this.picturebox1.creategraphics();
gra.smoothingmode = system.drawing.drawing2d.smoothingmode.antialias;
pen pen = new pen(color.pink);//画笔颜色
gra.drawellipse(pen, 250, 10, 100, 100);//画椭圆的方法,x坐标、y坐标、宽、高,如果是100,则半径为50
写字:
复制代码 代码如下:
graphics gra = this.picturebox1.creategraphics();
font myfont = new font("宋体", 60, fontstyle.bold);
brush bush = new solidbrush(color.red);//填充的颜色
gra.drawstring("!", myfont, bush, 100, 100);