摘要: /// /// 渐变算法 /// /// 位图源(物理路径) /// 起点色(HTML格式) /// 终点色(HTML格式) /// 保存图片路径(物理路径) public static void LinearGradient(string sourceImg, string destinationImg, string colorHead, string colorTail) { using (Image img = Image.FromFile(sourceImg)) { int width = img.Width; RGB colorBegin = RGB.Split(colorHe.. 阅读全文
posted @ 2013-09-18 10:56 zhh 阅读(1556) 评论(0) 推荐(0) 编辑