C# ai绘图源码
时间: 2023-07-12 22:08:07 浏览: 117
以下是一个简单的C# AI绘图源码示例,使用了System.Drawing库:
```
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
namespace AI_Draw
{
class Program
{
static void Main(string[] args)
{
Bitmap bitmap = new Bitmap(800, 600);
Graphics graphics = Graphics.FromImage(bitmap);
Pen pen = new Pen(Color.Red, 3);
graphics.DrawLine(pen, 100, 100, 700, 500);
SolidBrush brush = new SolidBrush(Color.Blue);
graphics.FillRectangle(brush, 200, 200, 400, 200);
bitmap.Save("AI_Draw.png");
Console.WriteLine("The image has been saved in the folder.");
Console.ReadKey();
}
}
}
```
这个示例程序创建了一个800x600像素的位图,使用Graphics对象进行绘图操作,并使用Pen和SolidBrush对象设置线条和填充颜色。最后,使用bitmap.Save()方法将图像保存到文件中。你可以根据自己的需求修改和扩展这个示例。
阅读全文