摘要:里面有4个重载方法,有直接返回Image对象的,有生成缩略图,并且保存到指定目录的! using System.IO;using System.Drawing;using System.Drawing.Imaging;/**//// summary/// 图片处理类/// 1、生成缩略图片或按照比例改变图片的大小和画质/// 2、将生成的缩略图放到指定的目录下/// /summarypublic class ImageClass...{ public Image ResourceImage; private int ImageWidth; private int ImageHeight
阅读全文