如何应用平底锅和平底锅同一形式4个图片框分别缩放

发布于 2025-01-04 18:03:43 字数 167 浏览 1 评论 0原文

在我的项目中,我在一个表单中使用 4 个 pictureBox。

单独应用平移和缩放功能时,第一个图像可以正常工作,但是,如果我选择第二个图像,则第一个图像位图会更改为异常。

我不知道为什么会变成这样。请帮我。

我正在使用C Sharp。

In my project I am using 4 pictureBoxs in a single form.

While applying the pan and zoom function separately, the first image works correctly but, if I go for the second one the first image bitmap changes to exceptions.

I don't know why it changes like this. Please help me.

I am using C Sharp.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九厘米的零° 2025-01-11 18:03:43

我得到了我的问题的解决方案。

我的问题是位图变成异常,因为我在缓存中使用了相同的位置。所以数据被损坏了。为了克服这个问题,我们必须为位图分配新位置。

Bitmap bitmap = new Bitmap("D:\a.jpg");

同样,我分配了 4 个变量并用于显示图像。

I got the solution for my question.

My problem is Bitmap changing into exceptions, because am used same location in cache. So data was corrupted. To overcome this we have to assign the new location for Bitmap.

Bitmap bitmap = new Bitmap("D:\a.jpg");

Likewise i assigned 4 variables and used to display the images.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文