生成缩略图及生成水印图

生成缩略图及生成水印图,太帅了.

  private void Button1_Click(object sender, System.EventArgs e)
  {
   string namestr = Path.GetFileName(this.File1.PostedFile.FileName);//提取文件名  
   this.File1.PostedFile.SaveAs(Server.MapPath(".") + @"/" + namestr);

   System.Drawing.Image image, aNewImage;
   image = System.Drawing.Image.FromStream(this.File1.PostedFile.InputStream);
   decimal width = image.Width;
   decimal height = image.Height;
   int newwidth, newheight;
   if (width > height)
   {
    newwidth = 100;
    newheight = (int)(height / width * 100);
   }
   else
   {
    newheight = 100;
    newwidth = (int)(width / height * 100);
   }
   aNewImage = image.GetThumbnailImage(newwidth, newheight, null, IntPtr.Zero);
   Bitmap output = new Bitmap(aNewImage);
   Graphics g = Graphics.FromImage(output);

   //g.DrawString(TextBox1.Text.Trim(), new Font("Courier New", 9), new SolidBrush(Color.Red), 60, 60);//写版权信息及文本格式及位置
   output.Save(Server.MapPath(".") + @"/s_" + namestr, System.Drawing.Imaging.ImageFormat.Jpeg);
  }

  private void Button2_Click(object sender, System.EventArgs e)
  {
   string extension = Path.GetExtension(File1.PostedFile.FileName).ToUpper();
   string fileName = DateTime.Now.ToString("yyyyMMddhhmmss");

   string path = Server.MapPath(".") + "/UploadFile/" + fileName + extension;
   File1.PostedFile.SaveAs(path);
   System.Drawing.Image image = System.Drawing.Image.FromFile(path);
   System.Drawing.Image copyImage = System.Drawing.Image.FromFile( Server.MapPath(".") + "/logo.gif");
   //Create a new FrameDimension object from this image

   FrameDimension ImgFrmDim = new FrameDimension( image.FrameDimensionsList[0] );

   int nFrameCount = image.GetFrameCount( ImgFrmDim );

   // Save every frame into jpeg format

   for( int i = 0; i < nFrameCount; i++ )
   {
    image.SelectActiveFrame( ImgFrmDim, i );

    image.Save( string.Format( Server.MapPath(".") + "/UploadFile/Frame{0}.jpg", i ), ImageFormat.Jpeg );
   }
   image.Dispose();

   for( int i = 0; i < nFrameCount; i++ )
   {
    string pa = Server.MapPath(".") + "/UploadFile/Frame"+i+".jpg";
    System.Drawing.Image Image = System.Drawing.Image.FromFile(pa);
    Graphics g = Graphics.FromImage(Image);
    g.DrawImage(copyImage, new Rectangle(Image.Width-copyImage.Width, Image.Height-copyImage.Height, 

     copyImage.Width, copyImage.Height), 0, 0, copyImage.Width, copyImage.Height, GraphicsUnit.Pixel);
    g.Dispose();

    string newPath = Server.MapPath(".") + "/UploadFile/" + fileName + "_new"+i.ToString()+ extension;
    Image.Save(newPath);

    Image.Dispose();

    if(File.Exists(pa))
    {
     File.Delete(pa);
    }
   }

   if(File.Exists(path))
   {
    File.Delete(path);
   }

  }  

需要引入命名空间:

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

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值