- 积分
- 338
贡献1078
飞刀116 FD
注册时间2011-12-29
在线时间69 小时


|
发表于 2012-7-2 13:39:11
|
显示全部楼层
ImageAttributes imgArr = new ImageAttributes();
Color lowerColor = ImageBackColor(myImage);
imgArr.SetColorKey(lowerColor, lowerColor);
g.DrawImage(myImage, rect, 0, 0, 58, 95, GraphicsUnit.Pixel, imgArr);
imgArr = null;
private Color ImageBackColor(Image image)
{
return (new Bitmap(image)).GetPixel(0, 0);
} |
|