圖片合成程式碼 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 public class compositeImage { public void addimageadd ( string [] images ) { string str0 = images [ 1 ]; Image img0 = ReturnImage ( str0 ); System . Drawing . Image newImage = img0 . GetThumbnailImage ( img0 . Width , img0 . Height , null , new IntPtr ()); Graphics g = Graphics . FromImage ( newImage ); g . DrawImage ( img0 , 0 , 0 , img0 . Width , img0 . Height ); for ( int i = 2 ; i < images . Length ; i ++) { string str1 = images [ i ]; Image img1 = ReturnImage ( str1 ); g . DrawImage ( img1 , 0 , 0 , img1 . Width , img1 . Height ); } newImage . Save ( images [ 0 ], ImageFormat . Bmp ); } private static Image ReturnImage ( string strPhotoPath...