.net上传图片文件,生成缩略图,并写上版权信息

本文介绍了一个ASP.NET应用程序中如何实现图片文件的上传、生成缩略图并添加版权信息的过程。具体步骤包括:获取上传文件、保存原图、创建缩略图、在图片上添加文本并保存带有版权信息的图片。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

.net上传图片文件,生成缩略图,并写上版权信息

private void Button1_Click(object sender, System.EventArgs e)
   {
    if(File1.PostedFile.FileName!=null)
    {    
    string namestr = Path.GetFileName(File1.PostedFile.FileName);//提取文件名   
    File1.PostedFile.SaveAs(Server.MapPath(".")+@"/"+namestr);
    Image2.Visible=true;
    Image2.ImageUrl=Server.MapPath(".")+@"/"+namestr;
    System.Drawing.Image image,aNewImage;
    image=System.Drawing.Image.FromStream(File1.PostedFile.InputStream);
    decimal width=image.Width;
    decimal height=image.Height;
    int newwidth,newheight;
    if(width>height)
    {
     newwidth=150;
     newheight=(int)(height/width*150);
    }
    else
    {
     newheight=150;
     newwidth=(int)(width/height*150);
    }
    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);
    Image1.Visible=true;
    Image1.ImageUrl=Server.MapPath(".")+@"/s_"+namestr;
    }
   }

  论坛支持:www.opsoso.net.cn
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值