[轉] [C#] 解決產生的縮圖模糊的問題

來源:互聯網
上載者:User

標籤:style   blog   http   io   color   ar   os   sp   strong   

一、問題情境

針對一張正方形圖片產生 48px × 48px 的縮圖並儲存為圖片檔案,但發現產生的縮圖很模糊。

產生的模糊的縮圖如下:

原始圖片(300px × 300px, png格式):

代碼中調用的是 System.Drawing.Image. GetThumbnailImage() 方法,主要實現代碼如下:

 1 private void SaveThumbnail(Bitmap bitmap, int width, int height, string directory, string filename, string extension) 2 { 3     var physicalPath = directory + filename + extension; 4     using (var thumbnail = bitmap.GetThumbnailImage(width, height, () => { return true; }, IntPtr.Zero)) 5     { 6         using (var encoderParameters = new EncoderParameters(1)) 7         { 8             encoderParameters.Param[0] = new EncoderParameter(Encoder.Quality, 100L); 9             thumbnail.Save(physicalPath,10                         ImageCodecInfo.GetImageEncoders()11                             .Where(x => x.FilenameExtension.Contains(extension.ToUpperInvariant()))12                             .FirstOrDefault(),13                         encoderParameters);14         }15     }           16 }

 

二、解決方案

改為調用 System.Drawing.Graphics.DrawImage() 方法, 主要實現代碼如下:

 1 private void SaveThumbnail(Bitmap originBitmap, int width, int height, string directory, string filename, string extension) 2 { 3     var physicalPath = directory + filename + extension; 4              5     using (var newImage = new Bitmap(width, height)) 6     { 7         using (var graphic = GetGraphic(originBitmap, newImage)) 8         { 9             graphic.DrawImage(originBitmap, 0, 0, width, height);10             using (var encoderParameters = new EncoderParameters(1))11             {12                 encoderParameters.Param[0] = new EncoderParameter(Encoder.Quality, 100L);13                 newImage.Save(physicalPath,14                             ImageCodecInfo.GetImageEncoders()15                                 .Where(x => x.FilenameExtension.Contains(extension.ToUpperInvariant()))16                                 .FirstOrDefault(),17                             encoderParameters);18             }19         }20     }            21 }22 23 private Graphics GetGraphic(Image originImage, Bitmap newImage)24 {25     newImage.SetResolution(originImage.HorizontalResolution, originImage.VerticalResolution);26     var graphic = Graphics.FromImage(newImage);27     graphic.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;28     graphic.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;29     graphic.PixelOffsetMode = System.Drawing.Drawing2D.PixelOffsetMode.HighQuality;30     graphic.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;31     return graphic;32 }

產生的縮圖效果如下:

三、參考資料

Cropping image using jQuery, Jcrop and ASP.NET

Resizing an Image without losing any quality

[轉] [C#] 解決產生的縮圖模糊的問題

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.