主頁(yè) > 知識(shí)庫(kù) > asp.net文件上傳功能(單文件,多文件,自定義生成縮略圖,水印)

asp.net文件上傳功能(單文件,多文件,自定義生成縮略圖,水印)

熱門(mén)標(biāo)簽:400電話(huà)個(gè)人能不能辦理 溫州外呼系統(tǒng)招商 手機(jī)外呼系統(tǒng)什么原理 滄州電銷(xiāo)外呼系統(tǒng)價(jià)格 銀行信貸電話(huà)機(jī)器人 天津電銷(xiāo)外呼系統(tǒng)違法嗎 合肥ai電銷(xiāo)機(jī)器人費(fèi)用 上海400客服電話(huà)怎么申請(qǐng) 凱立德地鐵站地圖標(biāo)注
前言
上傳功能,是大家經(jīng)常用到了,可能每一個(gè)項(xiàng)目都可以會(huì)用到。網(wǎng)上到處都有上傳功能的代碼。比我寫(xiě)的好的有很多。我這里也僅是分享我的代碼。
功能實(shí)現(xiàn)點(diǎn)
1.單個(gè)文件上傳;
2.多個(gè)文件上傳;
3.對(duì)于圖片等類(lèi)型的圖像,可以自定義生成縮略圖大??;
4.文件服務(wù)器擴(kuò)展。
模式
主要使用的是“模板方法”的設(shè)計(jì)模式。
本文章的功能優(yōu)缺點(diǎn)
1.可以自定義生成縮略圖的大小,任意定義。對(duì)于像微生活運(yùn)動(dòng)戶(hù)外商城(http://sports.8t8x.com/) 、淘寶網(wǎng)等的網(wǎng)站,他們需要上傳大量的商品圖片時(shí),非常有用。
2.缺點(diǎn),我對(duì)System.Drawing的命名空間不太熟練,生成圖像的方法還是從網(wǎng)上抄的,我覺(jué)得我自己得到的這些生成圖像的方法,不是非常好。
代碼實(shí)現(xiàn)
1.接口定義
復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
namespace CCNF.Plugin.Upload
{
/// summary>
/// 上傳功能的接口
/// /summary>
/// creator>Marc/creator>
public interface IUpload
{
/// summary>
/// 上傳單個(gè)文件。
/// /summary>
/// param name="sourcefile">/param>
/// returns>/returns>
/// author>Marc/author>
int SaveAs(HttpPostedFile sourcefile);
}
}

2.抽象模板方法類(lèi)
由于使用代碼插入的方式,cnblogs會(huì)報(bào)錯(cuò),所以, 我不得不使用原始的copy方式,可能看起來(lái)會(huì)不太舒服。
復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Text;
using System.Configuration;
using System.IO;
using System.Net;
using System.Data;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Drawing2D;
using System.Web;
using System.Collections;
namespace CCNF.Plugin.Upload
{
/// summary>
/// 上傳功能。
/// 本類(lèi)提供上傳的一般性方法。
/// /summary>
/// creator>Marc/creator>
public abstract class UploadAbstract : IUpload
{
#region 常量屬性
/// summary>
/// 允許上傳的文件擴(kuò)展名。
/// 多個(gè)文件擴(kuò)展名以英文逗號(hào)隔開(kāi)。
/// 默認(rèn)從Web.config中獲取。
/// /summary>
private readonly string UPLOADEXTENTION = ConfigurationManager.AppSettings["UploadExtention"];
private string uploadExtention = null;
/// summary>
/// 允許上傳的文件擴(kuò)展名。
/// 多個(gè)文件擴(kuò)展名以英文逗號(hào)隔開(kāi)。
/// 默認(rèn)從Web.config中獲取。
/// /summary>
public string UploadExtention
{
get
{
if (string.IsNullOrEmpty(this.uploadExtention))
{
if (string.IsNullOrEmpty(UPLOADEXTENTION))
{
throw new Exception("web.config中未配置UploadExtention屬性");
}
this.uploadExtention = UPLOADEXTENTION;
}
return this.uploadExtention;
}
set
{
this.uploadExtention = value;
}
}
/// summary>
/// 允許上傳的單個(gè)文件最大大小。
/// 單位為k。
/// 默認(rèn)從Web.config中獲取。
/// /summary>
private readonly int UPLOADLENGTH = Convert.ToInt16(ConfigurationManager.AppSettings["UploadLength"]);
private int uploadLength = 0;
/// summary>
/// 允許上傳的單個(gè)文件最大大小。
/// 單位為。
/// 默認(rèn)從Web.config中獲取。
/// /summary>
public int UploadLength
{
get
{
if (this.uploadLength == 0)
{
this.uploadLength = UPLOADLENGTH;
}
return this.uploadLength;
}
set
{
this.uploadLength = value;
}
}
/// summary>
/// 所上傳的文件要保存到哪個(gè)物理盤(pán)上。
/// 此值為嚴(yán)格的物理文件夾路徑。如:E:\CCNF\
/// 注意:必須有盤(pán)符。
/// 此屬于用于擴(kuò)展圖片服務(wù)器數(shù)據(jù)存儲(chǔ)。
/// 默認(rèn)從Web.config中獲取。
/// /summary>
private readonly string UPLOADPHYSICALPATH = ConfigurationManager.AppSettings["UploadPhysicalPath"];
private string uploadPhysicalPath = null;
/// summary>
/// 所上傳的文件要保存到哪個(gè)物理盤(pán)上。
/// 此值為嚴(yán)格的物理文件夾路徑。如:E:\CCNF\
/// 注意:必須有盤(pán)符。
/// 此屬性用于擴(kuò)展圖片服務(wù)器數(shù)據(jù)存儲(chǔ)。
/// 默認(rèn)從Web.config中獲取。
/// /summary>
public string UploadPhysicalPath
{
get
{
if (string.IsNullOrEmpty(this.uploadPhysicalPath))
{
if (string.IsNullOrEmpty(UPLOADPHYSICALPATH))
{
throw new Exception("web.config中未配置UploadPhysicalPath屬性");
}
this.uploadPhysicalPath = UPLOADPHYSICALPATH;
}
return this.uploadPhysicalPath;
}
set
{
this.uploadPhysicalPath = value;
}
}
#endregion
#region 枚舉
/// summary>
/// 水印類(lèi)型
/// /summary>
public enum WatermarkTypeEnum
{
/// summary>
/// 文字水印
/// /summary>
String = 1,
/// summary>
/// 圖片水印
/// /summary>
Image = 2
}
/// summary>
/// 上傳結(jié)果
/// /summary>
protected enum UploadResultEnum
{
/// summary>
/// 未指定要上傳的對(duì)象
/// /summary>
UploadedObjectIsNull = -9,
/// summary>
/// 文件擴(kuò)展名不允許
/// /summary>
ExtentionIsNotAllowed = -2,
/// summary>
/// 文件大小不在限定范圍內(nèi)
/// /summary>
ContentLengthNotWithinTheScope = -1,
/// summary>
/// 未配置或未指定文件的物理保存路徑
/// /summary>
UploadPhysicalPathNoSpecify = -20,
/// summary>
/// 未指定圖片水印的相對(duì)文件物理路徑
/// /summary>
ImageWartermarkPathNoSpecify = -30,
/// summary>
/// 未指定水印的文字
/// /summary>
StringWatermarkNoSpecify = -31,
/// summary>
/// 上傳原始文件失敗
/// /summary>
UploadOriginalFileFailure = 0,
/// summary>
/// 生成縮略失敗
/// /summary>
CreateThumbnailImageFailure = -3,
/// summary>
/// 未知錯(cuò)誤
/// /summary>
UnknownError = -4,
/// summary>
/// 上傳成功
/// /summary>
Success = 1
}
#endregion
#region 上傳屬性
/// summary>
/// 保存文件夾。
/// 格式形如: upload\ 或 images\ 或 upload\user\ 等。以\結(jié)尾。
/// 不允許加盤(pán)符
/// /summary>
public string SaveFolder { get; set; }
/// summary>
/// 自定義生成新的文件夾。
/// 格式形如: upload\ 或 images\ 或 upload\2011\10\8\ 等。以\結(jié)尾。
/// 最終的文件夾 = UploadPhysicalPath + SaveFolder + Folder
/// /summary>
public string Folder { get; set; }
/// summary>
/// 是否生成水印。
/// 默認(rèn)不啟用水印生成。
/// /summary>
public bool IsMakeWatermark { get; set; }
private int watermarkType = (int)WatermarkTypeEnum.String;
/// summary>
/// 生成水印的方式:string從文字生成,image從圖片生成。
/// 默認(rèn)是文字水印
/// /summary>
public int WatermarkType
{
get
{
return this.watermarkType;
}
set
{
this.watermarkType = value;
}
}
/// summary>
/// 水印文字。
/// /summary>
public string Watermark { get; set; }
/// summary>
/// 水印圖片的位置。
/// 提供圖片水印的相對(duì)位置。
/// 不含盤(pán)符。
/// /summary>
public string ImageWartermarkPath { get; set; }
/// summary>
/// 上傳后生成的新文件路徑。
/// 此路徑為相對(duì)物理路徑,不含盤(pán)符。
/// /summary>
public string NewFilePath { get; protected set; }
/// summary>
/// 生成縮略圖片的長(zhǎng)寬, 是一個(gè)二維數(shù)據(jù)?!?
/// 如:int a[3,2]={{1,2},{5,6},{9,10}}。
/// 如果上傳的文件是圖片類(lèi)型,并且希望生成此圖片的縮略圖,那么請(qǐng)將需要生成的長(zhǎng)寬尺寸以數(shù)組的方式保存到這里。
/// /summary>
public int[,] PicSize { get; set; }
/// summary>
/// 生成的圖片地址,與二維數(shù)組PicSize的長(zhǎng)度是對(duì)應(yīng)的。
/// 如果有傳入PicSize的數(shù)組,那么上傳完畢后,系統(tǒng)會(huì)返回PicPath數(shù)組。
/// 這個(gè)數(shù)組是它的最終上傳路徑,以便用戶(hù)對(duì)此值進(jìn)行數(shù)據(jù)庫(kù)操作。
/// 產(chǎn)生的PicPath的索引位置與PicSize是一一對(duì)應(yīng)的。
/// 此屬性已聲明為只讀屬性。
/// /summary>
public string[] PicPath { get; protected set; }
#endregion
/// summary>
/// 上傳單個(gè)文件
/// /summary>
/// param name="sourcefile">/param>
/// param name="upload">/param>
/// returns>/returns>
/// author>Marc/author>
public virtual int SaveAs(HttpPostedFile sourcefile)
{
int result = 0;
//未知錯(cuò)誤
UploadResultEnum uploadResultEnum = UploadResultEnum.UnknownError;
if (sourcefile == null)
{
//未指定要上傳的對(duì)象
uploadResultEnum = UploadResultEnum.UploadedObjectIsNull;
}
else
{
uploadResultEnum = Upload(sourcefile);
}
result = (int)uploadResultEnum;
return result;
}
/// summary>
/// 上傳文件
/// /summary>
/// param name="sourcefile">/param>
/// returns>/returns>
/// author>Marc/author>
private UploadResultEnum Upload(HttpPostedFile sourcefile)
{
#region 上傳前檢測(cè)
if (string.IsNullOrEmpty(UploadPhysicalPath))
{
//未配置或未指定文件的物理保存路徑
return UploadResultEnum.UploadPhysicalPathNoSpecify;
}
string fileName = sourcefile.FileName;
string fileExtention = Path.GetExtension(fileName);
if (!CheckExtention(fileExtention))
{
//文件擴(kuò)展名不允許
return UploadResultEnum.ExtentionIsNotAllowed;
}
int fileLength = sourcefile.ContentLength;
if (fileLength = 0 || fileLength > UploadLength * 1024)
{
//文件大小不在限定范圍內(nèi)
return UploadResultEnum.ContentLengthNotWithinTheScope;
}
//創(chuàng)建要保存的文件夾
string physicalPath = UploadPhysicalPath + SaveFolder + Folder;
if (!Directory.Exists(physicalPath))
{
Directory.CreateDirectory(physicalPath);
}
#endregion
string newFileName = "Ori_" + Guid.NewGuid().ToString() + fileExtention;
//新文件相對(duì)物理路徑
string newFilePath = physicalPath + newFileName;
#region 保存原始文件
if (!IsMakeWatermark) //不啟用水印時(shí)
{
//保存文件
sourcefile.SaveAs(newFilePath);
}
else //要求生成水印
{
Image bitmap = new System.Drawing.Bitmap(sourcefile.InputStream);
Graphics g = Graphics.FromImage(bitmap);
g.InterpolationMode = InterpolationMode.High;
g.SmoothingMode = SmoothingMode.AntiAlias;
Image fromImg = null;
try
{
//清除整個(gè)繪圖面并以透明背景色填充
//g.Clear(Color.Transparent);
if (WatermarkType == (int)WatermarkTypeEnum.String) //生成文字水印
{
if (string.IsNullOrEmpty(Watermark))
{
//未指定水印的文字
return UploadResultEnum.StringWatermarkNoSpecify;
}
Color color = Color.FromArgb(120, 255, 255, 255);
Brush brush = new SolidBrush(color);
// 自動(dòng)根據(jù)界面來(lái)縮放字體大小
int desiredWidth = (int)(bitmap.Width * .5);
Font font = new Font("Arial", 16, FontStyle.Regular);
SizeF stringSizeF = g.MeasureString(Watermark, font);
float Ratio = stringSizeF.Width / font.SizeInPoints;
int requiredFontSize = (int)(desiredWidth / Ratio);
// 計(jì)算圖片中點(diǎn)位置
Font requiredFont = new Font("Arial", requiredFontSize, FontStyle.Bold);
stringSizeF = g.MeasureString(Watermark, requiredFont);
int x = desiredWidth - (int)(stringSizeF.Width / 2);
int y = (int)(bitmap.Height * .5) - (int)(stringSizeF.Height / 2);
g.DrawString(Watermark, new Font("Verdana", requiredFontSize, FontStyle.Bold), brush, new Point(x, y));
bitmap.Save(newFilePath, ImageFormat.Jpeg);
}
else if (WatermarkType == (int)WatermarkTypeEnum.Image) //生成圖片水印
{
if (string.IsNullOrEmpty(ImageWartermarkPath))
{
//未指定圖片水印的相對(duì)文件物理路徑
return UploadResultEnum.ImageWartermarkPathNoSpecify;
}
fromImg = Image.FromFile(ImageWartermarkPath);
g.DrawImage(fromImg, new Rectangle(bitmap.Width - fromImg.Width, bitmap.Height - fromImg.Height, fromImg.Width, fromImg.Height), 0, 0, fromImg.Width, fromImg.Height, GraphicsUnit.Pixel);
bitmap.Save(newFilePath, ImageFormat.Jpeg);
}
}
catch
{
//上傳原始文件失敗
return UploadResultEnum.UploadOriginalFileFailure;
}
finally
{
if (fromImg != null)
{
fromImg.Dispose();
}
g.Dispose();
bitmap.Dispose();
}
}
#endregion
this.NewFilePath = newFilePath.Replace("\\", "/");
#region 生成各種規(guī)格的縮略圖
//生成各種規(guī)格的縮略圖
if (PicSize != null PicSize.Length > 0)
{
int width, height;
ArrayList picPathArray = new ArrayList();
for (int i = 0; i PicSize.GetLength(0); i++)
{
width = PicSize[i, 0];
height = PicSize[i, 1];
Guid tempGuid = Guid.NewGuid();
//縮略圖名稱(chēng)
string thumbnailFileName = physicalPath + tempGuid.ToString() + "_" + width.ToString() + "X" + height.ToString() + fileExtention;
if (!SaveThumb(sourcefile, width, height, thumbnailFileName))
{
//生成縮略失敗
return UploadResultEnum.CreateThumbnailImageFailure;
}
picPathArray.Add(thumbnailFileName.Replace("\\", "/"));
}
PicPath = (string[])picPathArray.ToArray(typeof(string));
}
#endregion
//上傳成功
return UploadResultEnum.Success;
}
/// summary>
/// 生成縮略圖
/// /summary>
/// param name="sourcefile">/param>
/// param name="width">生成縮略圖的寬度/param>
/// param name="height">生成縮略圖的高度/param>
/// param name="thumbnailFileName">縮略圖生成路徑,含盤(pán)符的絕對(duì)物理路徑。/param>
/// returns>/returns>
/// author>Marc/author>
private bool SaveThumb(HttpPostedFile sourcefile, int width, int height, string thumbnailFileName)
{
bool result = false;
Image ori_img = Image.FromStream(sourcefile.InputStream);
int ori_width = ori_img.Width;//650
int ori_height = ori_img.Height;//950
int new_width = width;//700
int new_height = height;//700
// 在此進(jìn)行等比例判斷,公式如下:
if (new_width > ori_width)
{
new_width = ori_width;
}
if (new_height > ori_height)
{
new_height = ori_height;
}
if ((double)ori_width / (double)ori_height > (double)new_width / (double)new_height)
{
new_height = ori_height * new_width / ori_width;
}
else
{
new_width = ori_width * new_height / ori_height;
}
Image bitmap = new System.Drawing.Bitmap(new_width, new_height);
Graphics g = Graphics.FromImage(bitmap);
try
{
g.SmoothingMode = SmoothingMode.HighQuality;
g.InterpolationMode = InterpolationMode.High;
g.Clear(System.Drawing.Color.Transparent);
g.DrawImage(ori_img, new Rectangle(0, 0, new_width, new_height), new Rectangle(0, 0, ori_width, ori_height), GraphicsUnit.Pixel);
bitmap.Save(thumbnailFileName, ImageFormat.Jpeg);
result = true;
}
catch
{
result = false;
}
finally
{
if (ori_img != null)
{
ori_img.Dispose();
}
if (bitmap != null)
{
bitmap.Dispose();
}
g.Dispose();
bitmap.Dispose();
}
return result;
}
/// summary>
/// 檢查文件擴(kuò)展名
/// /summary>
/// param name="extention">/param>
/// returns>/returns>
protected bool CheckExtention(string extention)
{
bool b = false;
string[] extentions = this.UploadExtention.Split(',');
for (int i = 0; i extentions.Length; i++)
{
if (extention.ToLower() == extentions[i].ToLower())
{
b = true;
break;
}
}
return b;
}
/// summary>
/// 返回上傳結(jié)果
/// /summary>
/// param name="result">消息集合/param>
/// returns>/returns>
/// author>marc/author>
public string Error(int[] result)
{
string s = "";
for (int i = 0; i result.Length; i++)
{
s += "第" + (i + 1).ToString() + "張:";
if (result[i] != 1)
{
switch (result[i])
{
case (int)UploadResultEnum.UploadedObjectIsNull:
s += "未指定要上傳的對(duì)象";
break;
case (int)UploadResultEnum.ExtentionIsNotAllowed:
s += "文件擴(kuò)展名不允許";
break;
case (int)UploadResultEnum.ContentLengthNotWithinTheScope:
s += "文件大小不在限定范圍內(nèi)";
break;
case (int)UploadResultEnum.UploadPhysicalPathNoSpecify:
s += "未配置或未指定文件的物理保存路徑";
break;
case (int)UploadResultEnum.ImageWartermarkPathNoSpecify:
s += "未指定圖片水印的相對(duì)文件物理路徑";
break;
case (int)UploadResultEnum.StringWatermarkNoSpecify:
s += "未指定水印的文字";
break;
case (int)UploadResultEnum.UploadOriginalFileFailure:
s += "上傳原始文件失敗";
break;
case (int)UploadResultEnum.CreateThumbnailImageFailure:
s += "生成縮略失敗";
break;
case (int)UploadResultEnum.UnknownError:
s += "未知錯(cuò)誤";
break;
default:
break;
}
}
else
{
s += "上傳成功";
}
s += ";\\r\\n";
}
return s;
}
/// summary>
/// 返回上傳結(jié)果
/// /summary>
/// param name="result">消息值,int型/param>
/// returns>/returns>
/// author>marc/author>
public string Error(int result)
{
string s = null;
switch (result)
{
case (int)UploadResultEnum.UploadedObjectIsNull:
s += "未指定要上傳的對(duì)象";
break;
case (int)UploadResultEnum.ExtentionIsNotAllowed:
s += "文件擴(kuò)展名不允許";
break;
case (int)UploadResultEnum.ContentLengthNotWithinTheScope:
s += "文件大小不在限定范圍內(nèi)";
break;
case (int)UploadResultEnum.UploadPhysicalPathNoSpecify:
s += "未配置或未指定文件的物理保存路徑";
break;
case (int)UploadResultEnum.ImageWartermarkPathNoSpecify:
s += "未指定圖片水印的相對(duì)文件物理路徑";
break;
case (int)UploadResultEnum.StringWatermarkNoSpecify:
s += "未指定水印的文字";
break;
case (int)UploadResultEnum.UploadOriginalFileFailure:
s += "上傳原始文件失敗";
break;
case (int)UploadResultEnum.CreateThumbnailImageFailure:
s += "生成縮略失敗";
break;
case (int)UploadResultEnum.UnknownError:
s += "未知錯(cuò)誤";
break;
case (int)UploadResultEnum.Success:
s += "上傳成功";
break;
default:
break;
}
return s;
}
}
}

所有的實(shí)現(xiàn)功能都在這個(gè)模板方法中。
主要定義了“常量屬性”、“枚舉”、“上傳屬性”, 以及開(kāi)放方法 SaveAs(HttpPostedFile sourcefile) 和 返回錯(cuò)誤消息的方法。
3.具體抽象類(lèi)的實(shí)現(xiàn),很簡(jiǎn)單,請(qǐng)看
復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web;
namespace CCNF.Plugin.Upload
{
/// summary>
/// 上傳文件
/// /summary>
/// creator>Marc/creator>
public sealed class Upload : UploadAbstract
{
}
}

4.前臺(tái)處理頁(yè)面Upload.ashx,注意是處理頁(yè)面,ashx文件。
復(fù)制代碼 代碼如下:

%@ WebHandler Language="C#" Class="Upload" %>
using System;
using System.Web;
using System.IO;
public class Upload : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
HttpResponse response = context.Response;
HttpRequest request = context.Request;
HttpServerUtility server = context.Server;
context.Response.ContentType = "text/plain";
HttpPostedFile httpPostedFile = request.Files["FileData"];
string uploadpath = request["folder"] + "\\";// server.MapPath(request["folder"] + "\\");
if (httpPostedFile != null)
{
CCNF.Plugin.Upload.Upload upload = new CCNF.Plugin.Upload.Upload();
upload.SaveFolder = uploadpath;
upload.PicSize = new int[,] { { 200, 150 } };//生成縮略圖,要生成哪些尺寸規(guī)格的縮略圖,請(qǐng)自行定義二維數(shù)組
int result = upload.SaveAs(httpPostedFile);
if (result == 1)
{
context.Response.Write("1");
}
else
{
throw new Exception(upload.Error(result));
// context.Response.Write("0");
}
}
}
public bool IsReusable
{
get
{
return false;
}
}
}

5.前臺(tái)aspx頁(yè)面調(diào)用ashx頁(yè)面
這里,我使用了一個(gè)第三方控件,因?yàn)檫@不是我本文的重點(diǎn),所以,只簡(jiǎn)略說(shuō)一下這個(gè)控件的名字是:jquery.uploadify,各位可以去找一下這個(gè)js控件的代碼。使用起來(lái)很簡(jiǎn)單的的一個(gè)js封裝控件。
通過(guò)這個(gè)js控件,會(huì)將頁(yè)面上傳的文件post到ashx處理文件中,ashx會(huì)接收數(shù)據(jù)并開(kāi)始上傳。
后記
一、上傳功能遍地都是, 而本文主要的亮點(diǎn)在于自定義生成多個(gè)縮略圖。這對(duì)于像微生活運(yùn)動(dòng)戶(hù)外商城(http://sports.8t8x.com/) 、淘寶網(wǎng)等的網(wǎng)站,非常適用。
二、我再次回顧設(shè)計(jì)模式,溫故而知新,又有新的發(fā)現(xiàn),所以,發(fā)此文,聊表慰藉。
關(guān)于本文作者
馬志遠(yuǎn)(Marc),1981年,2002年湖北大學(xué)肄業(yè),現(xiàn)蝸居廣州。2004年學(xué)習(xí)編程,至今已經(jīng)有8年的編程經(jīng)驗(yàn),長(zhǎng)期從事asp.net B/S方面的開(kāi)發(fā)和設(shè)計(jì)。在項(xiàng)目解決方案上、在項(xiàng)目性能和擴(kuò)展等上,具有深強(qiáng)的能力。您可以使用mazhiyuan1981@163.com與我取得聯(lián)系。
您可能感興趣的文章:
  • C#(.net)水印圖片的生成完整實(shí)例
  • Asp.net 文件上傳類(lèi)(取得文件后綴名,保存文件,加入文字水印)
  • asp.net下用Aspose.Words for .NET動(dòng)態(tài)生成word文檔中的圖片或水印的方法
  • asp.net 添加水印的代碼(已測(cè)試)
  • .net生成縮略圖及水印圖片時(shí)出現(xiàn)GDI+中發(fā)生一般性錯(cuò)誤解決方法
  • asp.net下GDI+的一些常用應(yīng)用(水印,文字,圓角處理)技巧
  • .net c# gif動(dòng)畫(huà)如何添加圖片水印實(shí)現(xiàn)思路及代碼
  • asp.net如何在圖片上加水印文字具體實(shí)現(xiàn)
  • Asp.net簡(jiǎn)單實(shí)現(xiàn)給圖片增加文字水印
  • .NET生成水印更好的方法實(shí)例代碼

標(biāo)簽:白城 怒江 赤峰 金華 七臺(tái)河 酒泉 洛陽(yáng) 溫州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《asp.net文件上傳功能(單文件,多文件,自定義生成縮略圖,水印)》,本文關(guān)鍵詞  asp.net,文件,上傳,功能,單文件,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《asp.net文件上傳功能(單文件,多文件,自定義生成縮略圖,水印)》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于asp.net文件上傳功能(單文件,多文件,自定義生成縮略圖,水印)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章