C# 使用 DrawImage 绘制缩放图像 JPG、PNG 看起来不正确

发布于 2024-09-25 22:19:09 字数 194 浏览 3 评论 0原文

我正在尝试在用户控件的背景上绘制图像(JPG、TIFF、PNG)。我的用户控件将使用矩形突出显示图像的某些部分。如果我绘制未缩放的图像,它们看起来是正确的。但是当我绘制然后缩放[适合页面]时,图像看起来不正确。对于 PNG 有时甚至无法加载图像。

该应用程序不是图像处理应用程序,但我仍然想显示缩放后的图像并且可以正确查看图像。

谢谢 ——韩

I am trying to Draw an Image (JPG, TIFF, PNG) on the background of my user control. My user control will highlight certain portions of the Image using Rectangles. If I draw the image unscaled they are looking correct. But when I draw then Scaled [Fit to Page] then the image is not looking correct. For PNG some times it fails to load the image even.

The application is not a image processing app but I still want to show the Image scaled and can see the image properly.

Thanks
--HAN

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

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

发布评论

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

评论(1

濫情▎り 2024-10-02 22:19:09

在绘制 int 绘制事件之前,我添加了以下内容

        e.Graphics.SmoothingMode = SmoothingMode.HighQuality;
        e.Graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
        e.Graphics.PixelOffsetMode = PixelOffsetMode.HighQuality; 

然后图像看起来不错。

感谢您的评论。

——哈里

Before Drawing int he paint event I have added the following

        e.Graphics.SmoothingMode = SmoothingMode.HighQuality;
        e.Graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
        e.Graphics.PixelOffsetMode = PixelOffsetMode.HighQuality; 

Then the images looked alright.

Thanks for your comments.

--Hari

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