GDI+ DrawImage拉伸时右边缘和下边缘被渐变透明的问题

如题,1*1的图片拉伸会被弄成:

image

 

2*2的会被弄成:

image

 

更大的图片,表现为右边缘和下边缘渐变:

image

 

GDI+自作聪明了……

 

解决方法:

Graphics g;

g.SetInterpolationMode(InterpolationModeNearestNeighbor);

g.SetPixelOffsetMode(PixelOffsetModeHalf);

效果:

image

 

特此记录。

参考资料:http://bbs.csdn.net/topics/310212346

posted on 2012-11-13 14:49  溪流  阅读(13)  评论(0编辑  收藏  举报