Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
None
-
5.4.0
-
None
-
MAC OSX yosemite, Qt 5.4, Qt Creator 3.3.0, IOS 7.1.1 (iphone 4s)
Description
I developed an app and builded with Qt 5.3.0 on MAC OSX yosemite all is working fine and pixmap scaled appear so good, today switched to Qt 5.4 re-builded my app and now pixmap appear with low quality and aliased.
Here a piece of code used for one of the pixmap.
QPixmap pixmapLogo(":/images/xxxxxx.png"); pixmapLogo=pixmapLogo.scaled(getRelativeWidth(112), getRelativeHeight(89), Qt::KeepAspectRatio, Qt::SmoothTransformation); pixmapLogoItem = new QGraphicsPixmapItem(); pixmapLogoItem->setPixmap(pixmapLogo); scene->addItem(pixmapLogoItem);