摘要: public static Bitmap ChangeOpacity(Image img, float opacityvalue) { Bitmap bmp = new Bitmap(img.Width,img.Height); // Determining Width and Height of Source Image Graphics graphics = Graphics.FromImage(bmp); ColorMatrix colormatrix = new ColorMatrix(); ... 阅读全文
posted @ 2013-10-18 10:54 louiskoo 阅读(354) 评论(0) 推荐(0) 编辑