ASP.NET生成缩略图

C#版本:

private void MakeSLT(string oldImagePath,string newImagePath)
{
  //oldImagePath -原图地址 newImagePath 生成缩略图地址
  int width = 150; //缩略图的宽度
  int height = 112; // 缩略图的高度
  int level = 100; //缩略图的质量 1-100的范围

  System.Drawing.Image oldimage = System.Drawing.Image.FromFile(oldImagePath);
  System.Drawing.Image thumbnailImage = oldimage.GetThumbnailImage(width, height,new System.Drawing.Image.GetThumbnailImageAbort(ThumbnailCallback), IntPtr.Zero);
  Bitmap bm=new Bitmap(thumbnailImage);

  //处理JPG质量的函数
  ImageCodecInfo[] codecs=ImageCodecInfo.GetImageEncoders(); 
  ImageCodecInfo ici=null;
  foreach(ImageCodecInfo codec in codecs)
  {
    if(codec.MimeType=="image/jpeg")
    ici=codec;
  }
  EncoderParameters ep=new EncoderParameters();
  ep.Param[0]=new EncoderParameter(Encoder.Quality,(long)level);

  bm.Save(newImagePath,ici,ep);
}

public bool ThumbnailCallback() 

  return false; 
}

VB.NET版本:

Sub makeSLT(ByVal oldImagePath As String,ByVal newImagePath As String)
  Dim oimg As System.Drawing.Image = System.Drawing.Image.FromFile(oldImagePath)
  Dim nimg As System.Drawing.Image = oimg.GetThumbnailImage(wids, heis, Nothing, IntPtr.Zero)

  Response.Clear()
  Dim outs As Bitmap = New Bitmap(nimg)
  '处理图像质量
  Dim codecs As ImageCodecInfo() = ImageCodecInfo.GetImageEncoders()
  Dim ici As ImageCodecInfo = System.DBNull
  For Each codec As ImageCodecInfo In codecs
    If codec.MimeType = "image/jpeg" Then
      ici = codec
    End If
  Next

  Dim ep As EncoderParameters = New EncoderParameters
  ep.Param(0) = New EncoderParameter(System.Drawing.Imaging.Encoder.Quality, CLng(100))
  outs.Save(newImagePath, ici, ep)
End Sub


C# 第三版

using System.IO;
using System.Drawing.Imaging;

private void Button1_ServerClick(object sender, System.EventArgs e)
{
  Graphics g=null;
  System.Drawing.Image upimage=null;
  System.Drawing.Image thumimg=null;
  System.Drawing.Image simage=null;
  Bitmap outputfile=null;
  try
  {
    string extension = Path.GetExtension(File1.PostedFile.FileName).ToUpper();
    string filename = DateTime.Now.ToString("yyyyMMddhhmmss");
    string smallpath = Server.MapPath(".")+"/smallimg/";
    string bigpath = Server.MapPath(".")+"/bigimg/";
    int width,height,newwidth,newheight;

    System.Drawing.Image.GetThumbnailImageAbort callb =new System.Drawing.Image.GetThumbnailImageAbort(ThumbnailCallback);
    if (!Directory.Exists(smallpath))
      Directory.CreateDirectory(smallpath);
    if (!Directory.Exists(bigpath))
      Directory.CreateDirectory(bigpath);

    Stream upimgfile = File1.PostedFile.InputStream;
    string simagefile = Server.MapPath("a8logo.jpg"); //要加水印的文件
    simage=System.Drawing.Image.FromFile(simagefile);
    upimage= System.Drawing.Image.FromStream(upimgfile); //上传的图片

    width = upimage.Width;
    height = upimage.Height;
    if (width>height)
    {
      newwidth=200;
      newheight =(int)((double)height/(double)width * (double)newwidth);
    }
    else
    {
      newheight=200;
      newwidth=(int)((double)width/(double)height * (double)newheight); 
    }
    thumimg = upimage.GetThumbnailImage(newwidth,newheight,callb,IntPtr.Zero);
    outputfile=new Bitmap(upimage);
    g=Graphics.FromImage(outputfile);
    g.DrawImage(simage,new Rectangle(upimage.Width-simage.Width,upimage.Height-simage.Height,upimage.Width,upimage.Height),0,0,upimage.Width,upimage.Height,GraphicsUnit.Pixel);

    string newpath = bigpath + filename + extension; //原始图路径
    string thumpath = smallpath + filename + extension; //缩略图路径
    outputfile.Save(newpath);
    thumimg.Save(thumpath);
    outputfile.Dispose();
  }
  catch(Exception ex)
  {
    throw ex;
  }
  finally
  {
    if(g!=null)
      g.Dispose();
    if (thumimg!=null)
      thumimg.Dispose();
    if (upimage!=null)
      upimage.Dispose();
    if (simage!=null)
      simage.Dispose();
  }
}

public bool ThumbnailCallback()
{
  return false;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值