制作等比环切缩缩图
摘要:/// <summary> /// 制作等比环切缩缩图 /// </summary> public static bool MakeThumbnail(Image image, string savePath, int toWidth, int toHeight) { if (File.Exists(savePath)) { File.SetAttributes(savePath, FileAttributes.Normal); File.Delete(savePath); } ...
阅读全文
posted @
2013-03-01 13:21
三聪
阅读(325)
推荐(0) 编辑