我已经下载并安装了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_())
这里哪里出错了?谢谢。