我有一个对象QPixmap,如何在没有QImage的情况下获得他的反射? 现在我使用QImage(PyQt4):
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))
答案 0 :(得分:6)
你应该能够使用QPixmap的transformed()
(see this),使用比例作为变换(比例为(1,-1)应该做我认为的技巧)。我假设PyQt中有所有功能。不要自己使用它。