PDA

View Full Version : poor Quality after QPixmap::scaled()



momesana
1st October 2007, 19:55
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

marcel
1st October 2007, 21:04
You should get better results if you use Qt::SmoothTransformation for the transformMode parameter of QPixmap::scaled.

momesana
1st October 2007, 21:43
Thanks a lot. It really makes a big difference.