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;
}
}
ASP上传图片文件,生成缩略图,并写上版权信息-ASP教程,ASP应用
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » ASP上传图片文件,生成缩略图,并写上版权信息-ASP教程,ASP应用
相关推荐
-      ASP 简介
-      SQL注入天书 – ASP注入漏洞全接触
-      用.net 处理xmlHttp发送异步请求
-      asp.net创建文件夹的IO类的问题
-      如何实现ASP.NET网站个性化
-      关于ASP.NET调用JavaScript的实现
-      ASP利用Google实现在线翻译功能
-      Asp无组件生成缩略图