在C#中使用GDI(Graphics Device Interface)可以通過System.Drawing命名空間中的類來實現。下面是一些使用GDI繪圖的常見操作示例:
Graphics g = this.CreateGraphics();
Pen pen = new Pen(Color.Black);
g.DrawLine(pen, x1, y1, x2, y2);
Pen pen = new Pen(Color.Black);
g.DrawRectangle(pen, x, y, width, height);
Pen pen = new Pen(Color.Black);
g.DrawEllipse(pen, x, y, width, height);
Font font = new Font("Arial", 12);
SolidBrush brush = new SolidBrush(Color.Black);
g.DrawString("Hello World", font, brush, x, y);
Image image = Image.FromFile("image.jpg");
g.DrawImage(image, x, y, width, height);
以上只是一些簡單的示例,GDI還提供了更多繪圖和圖形處理的功能,你可以根據需要進一步研究和使用。