C# 使用 DrawImage 绘制缩放图像 JPG、PNG 看起来不正确
我正在尝试在用户控件的背景上绘制图像(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在绘制 int 绘制事件之前,我添加了以下内容
然后图像看起来不错。
感谢您的评论。
——哈里
Before Drawing int he paint event I have added the following
Then the images looked alright.
Thanks for your comments.
--Hari