在C#中,GDI(Graphics Device Interface)用于處理圖形和圖像的繪制和操作。以下是一些常見的使用方法:
Bitmap image = new Bitmap("image.jpg");
Graphics graphics = Graphics.FromImage(image);
// 繪制直線
graphics.DrawLine(Pens.Black, new Point(0, 0), new Point(100, 100));
// 繪制矩形
graphics.DrawRectangle(Pens.Red, new Rectangle(10, 10, 100, 100));
// 繪制橢圓
graphics.DrawEllipse(Pens.Blue, new Rectangle(10, 10, 100, 100));
// 填充矩形
graphics.FillRectangle(Brushes.Red, new Rectangle(10, 10, 100, 100));
// 填充橢圓
graphics.FillEllipse(Brushes.Blue, new Rectangle(10, 10, 100, 100));
Font font = new Font("Arial", 12);
Brush brush = Brushes.Black;
graphics.DrawString("Hello World!", font, brush, new Point(10, 10));
// 圖像旋轉
graphics.RotateTransform(45);
// 圖像縮放
graphics.ScaleTransform(2, 2);
// 圖像裁剪
graphics.SetClip(new Rectangle(10, 10, 100, 100));
這些只是C#中GDI的一些基本使用方法,GDI還提供了更多的功能和方法,可以根據具體需求進行深入研究和使用。