博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Asp.net C# 图像处理
阅读量:4985 次
发布时间:2019-06-12

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

  在aspx页面添加一个Image控件,其ImageUrl="Image.aspx",
            添加一个Image.aspx,专门用来
处理图像,在cs代码里的Page_Load事件处理中写上如下代码:
            //原始图像
            string physicalPath = Server.MapPath("./129519.jpg");
            System.Drawing.Image srcBitmap = Bitmap.FromFile(physicalPath);
            //想要的目标图像
            int outHeight = srcBitmap.Height * 2;
            int outWidth = srcBitmap.Width * 2;
            //先创建一个空白的Bitmap
            Bitmap outBitmap = new Bitmap(outWidth, outHeight, PixelFormat.Format24bppRgb);
            Graphics g = Graphics.FromImage(outBitmap);
            //在outBitmap 上绘图
            Rectangle destRectangle=new Rectangle(0, 0, outWidth, outHeight);
            int srcX = 0;
            int srcY = 0;
            g.DrawImage(srcBitmap, destRectangle/*显示图像的大小*/, srcX,srcY/*从此X,Y坐标开始截取*/,srcBitmap.Width/4/*截取宽*/, srcBitmap.Height/4/*截取高*/, GraphicsUnit.Pixel);
         
            //设置输出类型
            Response.ContentType = "image/jpeg";
            //向Client 输出
            outBitmap.Save(Response.OutputStream, ImageFormat.Jpeg);
            Response.End();

转载于:https://www.cnblogs.com/platfarm/p/3907895.html

你可能感兴趣的文章
linux一些基本常识(四)
查看>>
Docker架构
查看>>
C#设计模式(3)——工厂方法模式
查看>>
过目不忘JS正则表达式
查看>>
bzoj1009: [HNOI2008]GT考试 ac自动机+矩阵快速幂
查看>>
iOS中图像处理技术资料:
查看>>
Colidity-- StoneWall
查看>>
Leetcode 904. Fruit Into Baskets
查看>>
怎样连接REDIS服务端
查看>>
ajax同步,加载loading的bug
查看>>
秒杀多线程第二篇 多线程第一次亲密接触 CreateThread与_beginthreadex本质区别
查看>>
div滚动条
查看>>
iOS越狱程序开发
查看>>
一个监听事件监听多个按钮
查看>>
调用其他类的方法
查看>>
SQlite数据库
查看>>
前端开发要注意的浏览器兼容性问题整理
查看>>
Python服务器开发 -- 网络基础
查看>>
开源项目Html Agility Pack实现快速解析Html
查看>>
一些常用的js,jquerry 样例
查看>>