Asp.net C# 图像处理
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();
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。