2

我已经下载并安装了python-poppler-qt4,现在我正在尝试一个简单的 Qt 应用程序来显示 PDF 页面。我遵循了我从网上获得的信息,即将 PDF 转换为 QImage,然后转换为 QPixMap,但它不起作用(我得到的只是一个没有可见内容的小窗口)。

我可能在某些时候失败了(QImage.width()返回我输入的宽度,QPixMap.width()返回 0)。

这是代码:

#!/usr/bin/env python

import sys
from PyQt4 import QtGui, QtCore
import popplerqt4

class Application(QtGui.QApplication):
    def __init__(self):
        QtGui.QApplication.__init__(self, sys.argv)     
        self.main = MainWindow()
        self.main.show()

    class MainWindow(QtGui.QFrame):
        def __init__(self, parent=None):
            QtGui.QWidget.__init__(self, parent)
            self.layout = QtGui.QVBoxLayout()
            self.doc = popplerqt4.Poppler.Document.load('/home/benjamin/test.pdf')
            self.page = self.doc.page(1)
# here below i entered almost random dpi, position and size, just to test really 
            self.image = self.page.renderToImage(150, 150, 0, 0, 210, 297)
            self.pixmap = QtGui.QPixmap()
            self.pixmap.fromImage(self.image)
            self.label = QtGui.QLabel(self)
                    self.label.setPixmap(self.pixmap)
            self.layout.addWidget(self.label)
            self.setLayout(self.layout)

    if __name__ == "__main__":
            application = Application()
            sys.exit(application.exec_())

这里哪里出错了?谢谢。

4

1 回答 1

4

我不熟悉 python,所以这可能不直接适用,而是QPixmap::fromImage一个返回QPixmap. 所以你的代码应该是这样的:

 self.pixmap = QtGui.QPixmap.fromImage(self.image)

换句话说,self.pixmap.fromImage不会改变self.pixmap,它会返回一个新的像素图,该像素图是根据您作为参数提供的图像生成的。

于 2012-05-12T10:38:09.933 回答