我想畫一個bmp圖像是進入的方法在C#中使用的DrawLine方法 public void DrawLineInt(Bitmap bmp)
{
Pen blackPen = new Pen(Color.Black, 3);
int x1 = 100;
int y1 = 100;
int x2 = 500;
int y2 = 100;
// Draw line to screen.
我需要編寫一個程序,該程序將根據tileset圖像生成108個圖標組合(標準Windows .ico文件)。 我使用類System.Drawing.Bitmap構建每個combinaison,和我保存這樣的: Bitmap IconBitmap = new Bitmap(16, 16);
// Some processing, writing different parts of the sou