0

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

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

谢谢--韩

4

1 回答 1

0

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

于 2010-10-28T18:19:21.983 回答