使用ASP.NET创建缩略图的最佳方法是什么?

前端之家收集整理的这篇文章主要介绍了使用ASP.NET创建缩略图的最佳方法是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
故事:用户上传添加到照片库的图像。作为上传过程的一部分,我们需要A)将图像存储在Web服务器的硬盘驱动器上,B)将图像的缩略图存储在Web服务器的硬盘驱动器上。

这里的“最佳”定义为

>相对容易实施,理解和维护
>结果质量合理的缩略图

性能和高质量的缩略图是次要的。

解决方法

我想你最好的解决方案是使用.NET Image类的 GetThumbnailImage
// Example in C#,should be quite alike in ASP.NET
// Assuming filename as the uploaded file
using ( Image bigImage = new Bitmap( filename ) )
{
   // Algorithm simplified for purpose of example.
   int height = bigImage.Height / 10;
   int width = bigImage.Width / 10;

   // Now create a thumbnail
   using ( Image smallImage = image.GetThumbnailImage( width,height,new Image.GetThumbnailImageAbort(Abort),IntPtr.Zero) )
   {
      smallImage.Save("thumbnail.jpg",ImageFormat.Jpeg);
   }
}
原文链接:https://www.f2er.com/aspnet/253212.html

猜你在找的asp.Net相关文章