我正在尝试合并两个图像并在pictureBox上显示它们但是当我显示任何小图像然后它重复的pictureBox的大小
我正在使用它与其他图像合并
grfx = Graphics.FromImage(Image1); // Grass.png
grfx.DrawImage(Image2,0,0); // Mario.png
结果如下 Output of my code
在图片中,我希望马里奥只展示一次。 谢谢,
答案 0 :(得分:0)
我从网上发现的一些暗示中得到了一些暗示。问题是我改变了
pictureBox.BackgroundImageLayout = ImageLayout.Tile
到
pictureBox.BackgroundImageLayout = ImageLayout.none
不,谢谢你的兴趣。