首页 > 开发 > 综合 > 正文

图片以二进制流输出到网页

2024-07-21 02:24:00
字体:
来源:转载
供稿:网友

using system;
using system.collections;
using system.componentmodel;
using system.data;
using system.drawing;
using system.web;
using system.web.sessionstate;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.htmlcontrols;
using system.io;

namespace megabbs.sendmail
{
 /// <summary>
 /// webform4 的摘要说明。
 /// </summary>
 public class webform4 : system.web.ui.page
 {
 
  private void page_load(object sender, system.eventargs e)
  {
   // 在此处放置用户代码以初始化页面
   if(!this.ispostback)
   {
    binddata();
   }
  }

  #region web 窗体设计器生成的代码
  override protected void oninit(eventargs e)
  {
   //
   // codegen: 该调用是 asp.net web 窗体设计器所必需的。
   //
   initializecomponent();
   base.oninit(e);
  }
  
  /// <summary>
  /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  /// 此方法的内容。
  /// </summary>
  private void initializecomponent()
  {   
   this.load += new system.eventhandler(this.page_load);
  }
  #endregion

  /// <summary>
  /// 图片以二进制流输出
  /// </summary>
  private void binddata()
  {
   filestream fs = new filestream(@"d:/22-11-46-3-524454584.jpg",filemode.open,fileaccess.read);
   byte[] mydata = new byte[fs.length];
   int length = convert.toint32(fs.length);
   fs.read(mydata,0,length);
   fs.close();
   this.response.outputstream.write(mydata,0,length);
   this.response.end();
  }
 }
}

商业源码热门下载www.html.org.cn

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表