string sp = Server.MapPath("/");//"/PDF/tz/tempword/" if (!System.IO.Directory.Exists(sp)) { System.IO.Directory.CreateDirectory(sp); } //Request.Files[0].SaveAs(path); ImageAttributes vAttr = new ImageAttributes(); //vAttr是关键 //图像中与0,0那点相同的颜色要变成透明 Bitmap bitmap = new Bitmap(Request.Files[0].InputStream); Bitmap bitmappng = new Bitmap(165, 165);//新生成的图片宽与高 vAttr.SetColorKey(bitmap.GetPixel(0, 0), bitmap.GetPixel(0, 0)); Graphics g = Graphics.FromImage(bitmappng); g.InterpolationMode = InterpolationMode.HighQualityBicubic; g.DrawImage(bitmap, new Rectangle(10, 10, 165, 165), 0, 0, bitmap.Width, bitmap.Height, GraphicsUnit.Pixel, vAttr); g.Save(); g.Dispose(); bitmappng.Save(sp + "png.png", ImageFormat.Png);
原文:https://www.cnblogs.com/gxivwshjj/p/13180267.html