23 23
欢迎来到天天文库
浏览记录
ID:9061913
大小:16.61 KB
页数:6页
时间:2018-04-16
《用fileupload控件上传图片并自动生成缩略图、带文字和图片的水印图》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、<%@PageLanguage="C#"AutoEventWireup="true"CodeFile="upfile.aspx.cs" Inherits="upfile_upfile"%>234562、>7标题在这里89101112131415163、dy>171usingSystem;2usingSystem.Data;3usingSystem.Configuration;4usingSystem.Collections;5usingSystem.Web;6usingSystem.Web.Security;7usingSystem.Web.UI;8usingSystem.Web.UI.WebControls;9usingSystem.Web.UI.WebControls.WebParts;10usingSystem.Web.UI.HtmlControls;11usingSys4、tem.IO;1213publicpartialclassupfile_upfile:System.Web.UI.Page14{15protectedvoidPage_Load(objectsender,EventArgse)16{}1718protectedvoidButton1_Click(objectsender,EventArgse)19{20if(FileUpload1.HasFile)21{22stringfileContentType=FileUpload1.PostedFile.ContentType;23if(fileCont5、entType=="image/bmp"6、7、fileContentType=="image/gif"8、9、 fileContentType=="image/pjpeg")24{25stringname=FileUpload1.PostedFile.FileName;//客户端文件路径2627FileInfofile=newFileInfo(name);28stringfileName=file.Name;//文件名称29stringfileName_s="s_"+file.Name;//缩略图文件名称30stringfileName_sy="sy10、_"+file.Name;//水印图文件名称(文字)31stringfileName_syp="syp_"+file.Name;//水印图文件名称(图片)32stringwebFilePath=Server.MapPath("file/"+fileName);//服务器 端文件路径33stringwebFilePath_s=Server.MapPath("file/"+fileName_s); // 服务器端缩略图路径34stringwebFilePath_sy=Server.MapPath("file/"+fileName_sy); // 11、服务器端带水印图路径(文字)35stringwebFilePath_syp=Server.MapPath("file/"+fileName_syp); //服务器端带水印图路径(图片)36stringwebFilePath_sypf=Server.MapPath("file/shuiyin.jpg"); // 服务器端水印图路径(图片)3738if(!File.Exists(webFilePath))39{40try41{42FileUpload1.SaveAs(webFilePath);//使用SaveAs方法保存文 件43AddShuiY12、inWord(webFilePath,webFilePath_sy);44AddShuiYinPic(webFilePath,webFilePath_
2、>7
3、dy>171usingSystem;2usingSystem.Data;3usingSystem.Configuration;4usingSystem.Collections;5usingSystem.Web;6usingSystem.Web.Security;7usingSystem.Web.UI;8usingSystem.Web.UI.WebControls;9usingSystem.Web.UI.WebControls.WebParts;10usingSystem.Web.UI.HtmlControls;11usingSys
4、tem.IO;1213publicpartialclassupfile_upfile:System.Web.UI.Page14{15protectedvoidPage_Load(objectsender,EventArgse)16{}1718protectedvoidButton1_Click(objectsender,EventArgse)19{20if(FileUpload1.HasFile)21{22stringfileContentType=FileUpload1.PostedFile.ContentType;23if(fileCont
5、entType=="image/bmp"
6、
7、fileContentType=="image/gif"
8、
9、 fileContentType=="image/pjpeg")24{25stringname=FileUpload1.PostedFile.FileName;//客户端文件路径2627FileInfofile=newFileInfo(name);28stringfileName=file.Name;//文件名称29stringfileName_s="s_"+file.Name;//缩略图文件名称30stringfileName_sy="sy
10、_"+file.Name;//水印图文件名称(文字)31stringfileName_syp="syp_"+file.Name;//水印图文件名称(图片)32stringwebFilePath=Server.MapPath("file/"+fileName);//服务器 端文件路径33stringwebFilePath_s=Server.MapPath("file/"+fileName_s); // 服务器端缩略图路径34stringwebFilePath_sy=Server.MapPath("file/"+fileName_sy); //
11、服务器端带水印图路径(文字)35stringwebFilePath_syp=Server.MapPath("file/"+fileName_syp); //服务器端带水印图路径(图片)36stringwebFilePath_sypf=Server.MapPath("file/shuiyin.jpg"); // 服务器端水印图路径(图片)3738if(!File.Exists(webFilePath))39{40try41{42FileUpload1.SaveAs(webFilePath);//使用SaveAs方法保存文 件43AddShuiY
12、inWord(webFilePath,webFilePath_sy);44AddShuiYinPic(webFilePath,webFilePath_
此文档下载收益归作者所有