All articles| All Pictures| All Softwares| All Video| Go home page| Write articles| Upload pictures

Reading number is top 10 articles
关于phpwind,5.01-5.3,0day的分析文章_php资料_编程技术
对C#中的TreeView添加背景图_[Asp.Net教程]
C#教程:拖放技术相关方法和事件使用实例
开发技术展望,Asp.net3.0,蓝图_.net资料_编程技术
GridView,的各种用法(4)_[Asp.Net教程]
Asp.net,水晶报表之打印和导出格式_[Asp.Net教程]
最简单快速的Apache二级域名实现方法介绍_[PHP教程]
delphi浮动工具栏实例
漫谈Visual,C#的组件设计方法_.net资料_编程技术
Atlas快速入门之实战Atlas_.net资料_编程技术
Reading number is top 10 pictures
So beauty, will let you spray blood6
The Soviet union swimsuit exposure in the 70 year1
The money of more than 100 countries and regions14
A beautiful girl to bud2
运动的范冰冰2
ashlynn brooke
初吻给了谁?
美女挤公交
Players in the eyes of a perfect love2
Sell the barbecue as says father du breul3
Download software ranking
Such love down(擒爱记)
美女写真2
Unix video tutorial1
Boxer's Top ten classic battle5
Kung fu panda - the secret of the teacher
Ashlynn Video4
Boxer's Top ten classic battle1
双旗镇刀客A
The Bermuda triangle1
传奇私服架设教程
aaa published in(发表于) 2013/12/15 8:51:53 Edit(编辑)
代码实例:在ASP.NET中上传图片并生成缩略图_.net资料_编程技术

代码实例:在ASP.NET中上传图片并生成缩略图_.net资料_编程技术

代码实例:在ASP.NET中上传图片并生成缩略图_.net资料_编程技术-你的首页-uuhomepage.com
private void btnUploadPicture_Click(object sender, System.EventArgs e)
{
//检查上传文件的格式是否有效
if(this.UploadFile.PostedFile.ContentType.ToLower().IndexOf("image") < 0)
{
Response.Write("上传图片格式无效!");
return;
}

//生成原图
Byte[] oFileByte = new byte[this.UploadFile.PostedFile.ContentLength];
System.IO.Stream oStream = this.UploadFile.PostedFile.InputStream;
System.Drawing.Image oImage = System.Drawing.Image.FromStream(oStream);

int oWidth = oImage.Width; //原图宽度
int oHeight = oImage.Height; //原图高度
int tWidth = 100; //设置缩略图初始宽度
int tHeight = 100; //设置缩略图初始高度

//按比例计算出缩略图的宽度和高度
if(oWidth >= oHeight)
{
tHeight = (int)Math.Floor(Convert.ToDouble(oHeight) * (Convert.ToDouble(tWidth) / Convert.ToDouble(oWidth)));
}
else
{
tWidth = (int)Math.Floor(Convert.ToDouble(oWidth) * (Convert.ToDouble(tHeight) / Convert.ToDouble(oHeight)));
}

//生成缩略原图
Bitmap tImage = new Bitmap(tWidth,tHeight);
Graphics g = Graphics.FromImage(tImage);
g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.High; //设置高质量插值法
g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;//设置高质量,低速度呈现平滑程度
g.Clear(Color.Transparent); //清空画布并以透明背景色填充
g.DrawImage(oImage,new Rectangle(0,0,tWidth,tHeight),new Rectangle(0,0,oWidth,oHeight),GraphicsUnit.Pixel);

string oFullName = Server.MapPath(".") + "/" + "o" + DateTime.Now.ToShortDateString().Replace("-","") + DateTime.Now.Hour.ToString() + DateTime.Now.Minute.ToString() + DateTime.Now.Second.ToString() + DateTime.Now.Millisecond.ToString() + ".jpg"; //保存原图的物理路径
string tFullName = Server.MapPath(".") + "/" + "t" + DateTime.Now.ToShortDateString().Replace("-","") + DateTime.Now.Hour.ToString() + DateTime.Now.Minute.ToString() + DateTime.Now.Second.ToString() + DateTime.Now.Millisecond.ToString() + ".jpg"; //保存缩略图的物理路径

try
{
//以JPG格式保存图片
oImage.Save(oFullName,System.Drawing.Imaging.ImageFormat.Jpeg);
tImage.Save(tFullName,System.Drawing.Imaging.ImageFormat.Jpeg);
}
catch(Exception ex)
{
throw ex;
}
finally
{
//释放资源
oImage.Dispose();
g.Dispose();
tImage.Dispose();
}
}



添加到del.icio.us 添加到新浪ViVi 添加到百度搜藏 添加到POCO网摘 添加到天天网摘365Key 添加到和讯网摘 添加到天极网摘 添加到黑米书签 添加到QQ书签 添加到雅虎收藏 添加到奇客发现 diigo it 添加到饭否 添加到飞豆订阅 添加到抓虾收藏 添加到鲜果订阅 digg it 貼到funP 添加到有道阅读 Live Favorites 添加到Newsvine 打印本页 用Email发送本页 在Facebook上分享


Disclaimer Privacy Policy About us Site Map

If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.