下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。
内存溢出小编现在分享给大家,也给大家做个参考。
1,判断图片的宽和高的比例,然后进行缩放,以便于使缩略图不变形。2,DrawImage方法为缩略图绘制边框,这样,浏览起来比较美观。
3,调用Save方法将生成的缩略图保存到指定的目录下。
private voID Makethumbnail(string sourcePath,string newPath,int wIDth,int height) { System.Drawing.Image ig = System.Drawing.Image.Fromfile(sourcePath); int towIDth = wIDth; int toheight = height; int x = 0; int y = 0; int ow = ig.WIDth; int oh = ig.Height; if ((double)ig.WIDth / (double)ig.Height > (double)towIDth / (double)toheight) { oh = ig.Height; ow = ig.Height * towIDth / toheight; y = 0; x = (ig.WIDth - ow) / 2; } else { ow = ig.WIDth; oh = ig.WIDth * height / towIDth; x = 0; y = (ig.Height - oh) / 2; } System.Drawing.Image bitmap = new System.Drawing.Bitmap(towIDth,toheight); system.drawing.graphics g = system.drawing.graphics.FromImage(bitmap); g.InterpolationMode = System.Drawing.drawing2d.InterpolationMode.High; g.SmoothingMode = System.Drawing.drawing2d.SmoothingMode.HighQuality; g.Clear(System.Drawing.color.transparent); g.DrawImage(ig,new System.Drawing.Rectangle(0,towIDth,toheight),new System.Drawing.Rectangle(x,y,ow,oh),system.drawing.graphicsUnit.Pixel); try { bitmap.Save(newPath,System.Drawing.Imaging.ImageFormat.Jpeg); } catch (Exception ex) { throw ex; } finally { ig.dispose(); bitmap.dispose(); g.dispose(); } }
以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
总结以上是内存溢出为你收集整理的C#实现图片生成缩略图全部内容,希望文章能够帮你解决C#实现图片生成缩略图所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)