故事:用户上传要添加到照片库的图像。作为上传过程的一部分,我们需要A)将图像存储在Web服务器的硬盘驱动器上,B)将图像的缩略图存储在Web服务器的硬盘驱动器上。
这里的“最佳”定义为
>相对容易实施,理解和维护
>结果质量合理的缩略图
解决方法
我想你最好的解决方案是使用.NET
Image类的
GetThumbnailImage 。
@H_403_13@// 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);
}
}