C#完成在辦事器端裁剪圖片的辦法。本站提示廣大學習愛好者:(C#完成在辦事器端裁剪圖片的辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是C#完成在辦事器端裁剪圖片的辦法正文
本文實例講述了C#完成在辦事器端裁剪圖片的辦法。分享給年夜家供年夜家參考。詳細完成辦法以下:
//圖片途徑 String oldPath = Server.MapPath("~/62223231.jpg"); //新圖片途徑 String newPath = System.IO.Path.GetExtension(oldPath); //設置截取的坐標和年夜小 int x = 0, y = 20, width = 200, height = 2400; //盤算新的文件名,在舊文件名後加_new newPath = oldPath.Substring(0, oldPath.Length - newPath.Length) + "_new" + newPath; Response.Write(oldPath); Response.Write("<br>"); Response.Write(newPath); //界說截取矩形 System.Drawing.Rectangle cropArea = new System.Drawing.Rectangle(x, y, width, height); //要截取的區域年夜小 //加載圖片 System.Drawing.Image img = System.Drawing.Image.FromStream(new System.IO.MemoryStream(System.IO.File.ReadAllBytes(oldPath))); //斷定超越的地位否 if ((img.Width < x + width) || img.Height < y + height) { Response.Write("截取的區域跨越了圖片自己的高度、寬度."); img.Dispose(); return; } //界說Bitmap對象 System.Drawing.Bitmap bmpImage = new System.Drawing.Bitmap(img); //停止裁剪 System.Drawing.Bitmap bmpCrop = bmpImage.Clone(cropArea, bmpImage.PixelFormat); //保留成新文件 bmpCrop.Save(newPath); //釋放對象 img.Dispose(); bmpCrop.Dispose();
願望本文所述對年夜家的C#法式設計有所贊助。