How to display clear images with QPixmap?
-
When using QPixmap to load an image, if the size of the image file is 1000*1000 and the size of the image control is 32*32, there may be a grainy feeling or distortion when the screen resolution is 1080*1920 and the scaling ratio is 100%.
What can I do to show a clear picture? -
When using QPixmap to load an image, if the size of the image file is 1000*1000 and the size of the image control is 32*32, there may be a grainy feeling or distortion when the screen resolution is 1080*1920 and the scaling ratio is 100%.
What can I do to show a clear picture?Do you really think you can downsize an image to 3% without loosing quality? Use a smaller source image.
-
Do you really think you can downsize an image to 3% without loosing quality? Use a smaller source image.
@Christian-Ehrlicher Or one with few pixels different from all the single background one... ;)
-
Do you really think you can downsize an image to 3% without loosing quality? Use a smaller source image.
@Christian-Ehrlicher Can I do this by compressing the image?
-
@Christian-Ehrlicher Can I do this by compressing the image?
@Quella I don't see what compression had to do with downscaling. Use a smaller image.
-
@Quella I don't see what compression had to do with downscaling. Use a smaller image.
@Christian-Ehrlicher Got it. Thanks for your answer.
-