4
我有一個對象QPixmap,如何讓他的反射沒有QImage? 現在我做到這一點使用的QImage(PyQt4的):反映QPixmap
tmp_image = QImage("./templates/{type}/{name}.png".format(type=tpl_type, name=tpl_name))
pixmap_reflect = QPixmap().fromImage(tmp_image.mirrored(horizontal=True, vertical=False))
謝謝,工作'pixmap_reflect = pixmap.transformed(QTransform()。scale(-1,1))' – ingenium 2011-05-11 08:09:35