用bursh把一张图片加到exe上,结果图片出来的效果不对。
这样说吧,假设这张图片(218 *29)上有数字12345,但是出来的图片效果却是23451,就是说后半部分的图片被刷到前面去了
代码如下:
Brush brush = new TextureBrush(top_right ,new Rectangle(0 ,0 ,top_right.Width ,top_right.Height));
            g.FillRectangle(brush ,31,0 ,top_right.Width ,top_right.Height);