博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
上传图片并显示缩略图的最简单方法(c#)
阅读量:6575 次
发布时间:2019-06-24

本文共 922 字,大约阅读时间需要 3 分钟。

None.gif
private
 
void
 fileUpload_Click(
object
 sender, System.EventArgs e)
ExpandedBlockStart.gifContractedBlock.gif        
dot.gif
{
InBlock.gif            
// 模拟数据库里取出byte[]再显示缩略,
InBlock.gif            
// 模拟方法:先上传,把stream转成byte[],再把byte[]放在stream里,再输出
InBlock.gif
InBlock.gif            
// 上传
InBlock.gif
            System.IO.Stream fs = jpgUpload.PostedFile.InputStream;
InBlock.gif            
int nBytes          = jpgUpload.PostedFile.ContentLength;
InBlock.gif            
byte[] ByteArray    = new byte[nBytes];
InBlock.gif            
int nBytesRead      = fs.Read(ByteArray, 0, nBytes);
InBlock.gif            MemoryStream mBytes  
= new MemoryStream(ByteArray,0,nBytes);
InBlock.gif            
InBlock.gif            
// 转为stream,处理缩略
InBlock.gif
            System.Drawing.Image _img;
InBlock.gif            _img 
= System.Drawing.Image.FromStream(mBytes);
InBlock.gif            System.Drawing.Image _thumbImg 
= _img.GetThumbnailImage(Convert.ToInt32(_img.Width* 0.3),Convert.ToInt32( _img.Height * 0.3),null, IntPtr.Zero);
InBlock.gif
InBlock.gif            
// 显示到客户端
InBlock.gif
            Response.ContentType    = this.jpgUpload.PostedFile.ContentType;
InBlock.gif            MemoryStream MemStream  
= new MemoryStream(); 
InBlock.gif            _thumbImg.Save(MemStream, System.Drawing.Imaging.ImageFormat.Jpeg); 
InBlock.gif            MemStream.WriteTo(Response.OutputStream); 
InBlock.gif            Response.Flush();
ExpandedBlockEnd.gif        }
注释都在里面,不用说明了吧,重要的是GetThumbnailImage这个方法.
你可能感兴趣的文章
OGG 11g Checkpoint 详解
查看>>
PHP中使用socket通信响应速度慢的原因与解决办法
查看>>
Win7下安装Mysql(解压缩版)
查看>>
UVA 11992 Fast Matrix Operations (降维)
查看>>
暂时不想读研的几点理由
查看>>
增加临时表空间组Oracle11g单实例
查看>>
Diff Two Arrays
查看>>
stark组件(1):动态生成URL
查看>>
169. Majority Element
查看>>
下拉菜单
查看>>
[清华集训2014]玛里苟斯
查看>>
Doctype作用?严格模式与混杂模式如何区分?它们有何意义
查看>>
【MVC+EasyUI实例】对数据网格的增删改查(上)
查看>>
第三章:如何建模服务
查看>>
Project Euler 345: Matrix Sum
查看>>
你可能不知道的技术细节:存储过程参数传递的影响
查看>>
HTML转义字符大全(转)
查看>>
[摘录]调动员工积极性的七个关键
查看>>
Backup Volume 操作 - 每天5分钟玩转 OpenStack(59)
查看>>
.htaccess 基础教程(四)Apache RewriteCond 规则参数
查看>>