摘要: private Image GetThumbnail(string path, int width, int height) { Image image = Image.FromFile(path); Image.GetThumbnailImageAbort myCallback = new Image.GetThumbnailImageAbort(ThumbnailCallback); Image thumbnail = image.GetThumbnailImage(width, height, myCallback, IntPtr.Zero); image.Dispose(); re.. 阅读全文
posted @ 2013-10-05 15:57 万德源 阅读(274) 评论(0) 推荐(0) 编辑