首页 > 代码库 > Asp.net C# 图像处理
Asp.net C# 图像处理
在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();
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();
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。