Qimage保存低质量

时间:2017-03-20 08:23:59

标签: python python-3.x pyqt4 qimage

嗨我有一个文件选择器拍摄图像并将其保存为jpg,但它看起来很糟糕。请帮助我不知道为什么它看起来很糟糕。

    def getfile(self):
        fname = QFileDialog.getOpenFileName(self, 'Open file',"","Image files (*.jpg *.gif)")
        print(fname)
        img = QImage(fname)

        img = img.convertToFormat(QImage.Format_Indexed8,Qt.ThresholdDither|Qt.AutoColor)
        newname = 'Old/'+ time.strftime("img%Y%m%d%H%M%S") + '.jpg'
        print(newname)
        os.rename('Background.jpg', newname)
        img.save('Background.jpg', "jpg", 100)

我将它设置为100,但仍无法帮助

enter image description here

enter image description here

这个想法是允许用户添加图像作为背景,但如果图像是png或bmp将其转换为jpeg,那么它使用名称“Background.jpg”

0 个答案:

没有答案