When I scale down images using QPixmap::scaled() I get relatively poor Image quality. Is there a way to scale down an image and not loose too much imagequality in the process?
Thanks in advance
Printable View
When I scale down images using QPixmap::scaled() I get relatively poor Image quality. Is there a way to scale down an image and not loose too much imagequality in the process?
Thanks in advance
You should get better results if you use Qt::SmoothTransformation for the transformMode parameter of QPixmap::scaled.
Thanks a lot. It really makes a big difference.