如题,可行给分并结贴!谢谢!

解决方案 »

  1.   

    你可以用Graphics.DrawImage来进行拆分public void DrawImage(
       Image image,
       Rectangle destRect,
       Rectangle srcRect,
       GraphicsUnit srcUnit
    );
      

  2.   

    sample code as follows:
    Bitmap bit = new Bitmap( 20, 20 );
    Graphics g = Graphics.FromImage( bit );
    g.DrawImage ( yourBaseImage, 
        new Rectangle( 0, 0, 20,20 ),
        new Rectangle( 100, 100, 20,20 )/*Copy a 20*20 part from source image */,
        GraphicsUnit.Pixel );     yourPictureBox.Image = bit;