谢谢

解决方案 »

  1.   

    Point newp = new Point(50, 30);
                Graphics g = this.pictureBox1.CreateGraphics();
                g.Clear(Color.Black);
                Bitmap b = new Bitmap("E:\\bamboo.jpg");
                g.DrawImage(b, newp);
      

  2.   

    this.CreateGraphics().DrawImage(Image.FromFile(""),new Point(10,10));
      

  3.   


     Graphics g = pictureBox1.CreateGraphics();
     Rectange rect=new Rectange(x,y,width,height)
     g.DrawImage(YourImage,Rect);//可利用rect控制图象大小,左上角坐标