要使用GDI+,必須先創(chuàng)建Graphics對象,創(chuàng)建Graphics共有三種方法,第一種為 private void Form1_Paint(object sender, System.Windows.Forms.PaintEventArgs e) 第二種為:Graphics gh = this.CreateGraphics();也可以用Graphics gh = Button1.CreateGraphics; 第三種為: Bitmap myBitmap=new Bitmap("C:/myPic.bmp"); Graphics g= Graphics.FromImage(myBitmap); //使用Graphics g.SmoothingMode=SmoothingMode.Default; string tempstr = "章松山"; g.TranslateTransform(f.Height,0);//偏移量 Brush myBrush = Brushes.Blue; //以上繪制了一個帶方框的文本。 |
|