Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的项目中,我在一个表单中使用了 4 个图片框。
在分别应用平移和缩放功能时,第一个图像可以正常工作,但是如果我选择第二个,第一个图像位图会变为异常。
我不知道为什么会变成这样。请帮我。
我正在使用C Sharp。
我得到了我的问题的解决方案。
我的问题是位图变为异常,因为我在缓存中使用了相同的位置。所以数据被破坏了。为了克服这个问题,我们必须为位图分配新的位置。
Bitmap bitmap = new Bitmap("D:\a.jpg");
同样,我分配了 4 个变量并用于显示图像。