• 用网页显示图片的方法


    方法一、显示原图

    using System;

    namespace DtCms.Web.Tools
    {
        public partial class img : System.Web.UI.Page
        {
            protected void Page_Load(object sender, EventArgs e)
            {
                string gurl = "/UpLoadFiles/20110117/2011011719440778.jpg";
                Response.ContentType = "image/jpg";
                Response.Clear();
                Response.WriteFile(gurl);
            }

        }
    }

    方法二、二进制显示原图

    using System;
    using System.IO;

    namespace DtCms.Web.Tools
    {
        public partial class httpimg : System.Web.UI.Page
        {
            protected void Page_Load(object sender, EventArgs e)
            {
                string filePath = "图片路径";
                Response.ContentType = "image/jpg";
                FileStream imageStr = new FileStream(filePath, FileMode.Open);
                byte[] imageData = new byte[imageStr.Length];
                imageStr.Read(imageData, 0, (int)imageStr.Length);
                Response.OutputStream.Write(imageData, 0, (int)imageStr.Length);  

            }
        }
    }

  • 相关阅读:
    微信小程序之遮罩功能实现
    微信小程序之获取点击软键盘搜索按钮(confirm-type="search")之后的值
    python之路——闭包函数
    python之路——装饰器函数
    Python中的单例模式的几种实现方式及优化
    08-函数
    14-定时器
    13-JS中的面向对象
    12-关于DOM操作的相关案例
    17-案例
  • 原文地址:https://www.cnblogs.com/sntetwt/p/2011187.html
Copyright © 2020-2023  润新知