博客
关于我
强烈建议你试试无所不能的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这个方法.
你可能感兴趣的文章
谁拿了最多奖学金
查看>>
详解linux运维工程师入门级必备技能
查看>>
我的友情链接
查看>>
PhoneGap在Microsoft Visual Studio Express For Wi...
查看>>
Shell脚本的模块化和脚本复用
查看>>
暴力删除
查看>>
unable to bind to locking port 7054 within 45000 ms
查看>>
自动化运维之kickstart自动化部署安装操作系统
查看>>
C++前置声明的一个好处与用法
查看>>
Upgrade GI/CRS 11.1.0.7 to 11.2.0.2. Rootupgrade.sh Hanging
查看>>
vue组件样式scoped
查看>>
整站爬虫命令
查看>>
linux下ssh/sftp配置和权限设置
查看>>
微软职位内部推荐-SDE II
查看>>
SQLPlus获取oracle表操作SQL
查看>>
BFS(两点搜索) UVA 11624 Fire!
查看>>
字符串处理 BestCoder Round #43 1001 pog loves szh I
查看>>
How to add svn:externals in windows using TortoiseSVN
查看>>
JavaScript高级程序设计(5) 引用类型 (上)
查看>>
QT学习-10/31/2012
查看>>