Bitmap bm = new Bitmap( @"D:\Temp\MyPic.jpg" );int w = bm.Width / 2;int h = bm.Height / 3;Rectangle rTL = new Rectangle( 0, 0, w, h );Rectangle rBR = new Rectangle( w, h, w, h );Bitmap bmTL = (Bitmap)bm.Clone( rTL, bm.PixelFormat );Bitmap bmBR = (Bitmap)bm.Clone( rBR, bm.PixelFormat ); 这篇关于通过C#将图像分割成几个jpg文件,并将它们保存到SQL-Database。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-04 07:49