首页 > 开发 > 综合 > 正文

上传图片并修改其大小(C#)

2024-07-21 02:18:26
字体:
来源:转载
供稿:网友
上传图片并修改其大小
//thefile是一个file field html 控件
thefile.postedfile.saveas(system.web.httpcontext.current.server.mappath("temp.png"));
memorystream memstream=new memorystream();
system.drawing.image imgoutput =system.drawing.bitmap.fromfile(system.web.httpcontext.current.server.mappath("temp.png"));
//修改成80×80大小
system.drawing.image imgoutput2=imgoutput.getthumbnailimage(80,80,null,intptr.zero);
imgoutput2.save(system.web.httpcontext.current.server.mappath("image.png"), imageformat.png);
response.write(thefile.postedfile.filename);
response.write("len:"+memstream.length.tostring());
imgoutput.dispose();
imgoutput2.dispose();
response.write("上传成功!");
response.write(system.web.httpcontext.current.server.mappath("image.png"));
-----------------------------------------
飘飘何所似?天地一沙鸥。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表