分类

链接

2013 年 2 月
 123
45678910
11121314151617
18192021222324
25262728  

近期文章

热门标签

新人福利,免费薅羊毛

C#/.net图片压缩算法

using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; /// <summary> /// 图片压缩 /// </summary> public class ImageCompress { /// <summary> /// 指定缩放类型 /// </summary> public enum ImageCompressType { //***指定高宽缩放(可能变形) WH = 0, //***指定宽,高按比例 W = 1, //***指定高,宽按比例 H = 2, //***指定高宽裁减(不变形) Cut = 3, //...

.NET 暂无评论 阅读(2,093)