摘要: public static void MakeThumbnail(string originalImagePath, string thumbnailPath, int width, int height, string mode) { System.Drawing.Image originalImage = System.Drawing.Image.FromFile(originalImagePath); int towidth = width; int toheight = height; ... 阅读全文
posted @ 2013-04-08 16:54 卡萨丁·周 阅读(276) 评论(0) 推荐(0) 编辑