摘要: 这两天做了一个图片对比工具,里面要处理两张大的图片,所以要对图片先进行裁剪最开始用了 /// /// 裁剪图片 /// /// /// "c:\images\" private List DefClipImage(string imagePath, string savePath) { var fileInfo = new FileInfo(imagePath); if (!fileInfo.Exists) throw new Exception("图片" + imagePath + "不存在!"); var savePathList 阅读全文
posted @ 2013-12-12 17:08 ZN大叔 阅读(533) 评论(0) 推荐(1) 编辑