博客
关于我
强烈建议你试试无所不能的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这个方法.
你可能感兴趣的文章
我来自CSDN
查看>>
在mysql表中插入大量测试数据
查看>>
怎么给电脑设置IP地址和DNS地址,各系统设置IP/DNS几种方法
查看>>
必 备 习 题 集 (一)
查看>>
windows下批量部署简易脚本
查看>>
转:模态对话框的支持 (IE,Firefox,Chrome)
查看>>
《Node.js In Action》笔记之流程控制
查看>>
3518EV200 SDK学习1
查看>>
1163: 零起点学算法70——Yes,I can!
查看>>
关于图片或者文件在数据库的存储方式归纳
查看>>
hihocoder 1014 Trie树
查看>>
ADO.NET笔记——使用DataSet返回数据
查看>>
Python脚本日志系统
查看>>
gulp常用命令
查看>>
TCP(Socket基础编程)
查看>>
RowSet的使用
查看>>
每日一记--cookie
查看>>
WPF and Silverlight 学习笔记(十二):WPF Panel内容模型、Decorator内容模型及其他...
查看>>
IOS 7 Study - UISegmentedControl
查看>>
八、通用类型系统
查看>>