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

这段代码实现了图片上传、缩略图生成及添加文本信息的功能。当点击按钮且文件存在时,提取文件名并保存图片,根据图片宽高生成缩略图,最后在缩略图上指定位置添加文本信息并保存,同时显示原始图片和处理后的图片。

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

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;
}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值