摘要: /// <summary> /// 图片处理工具类 /// </summary> public class ImageUtils { /// <summary> /// 产生缩略图 /// </summary> public static System.IO.Stream GenerateThumbnail(System.IO.Stream imageStream, int width, int height) { System.IO.Stream ms; using (var originalImage = System.Drawing.Ima 阅读全文
posted @ 2011-07-11 01:07 王庭安 阅读(434) 评论(0) 推荐(0) 编辑