我已经下载并安装了python-poppler-qt4,我现在正在尝试使用简单的Qt应用程序来显示PDF页面。我已经按照我从网上获得的内容,即将PDF转换为QImage,然后转换为QPixMap,但它不起作用(我得到的只是一个没有可见内容的小窗口)。 / p>
我可能在某些时候失败了(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_())
这里出了什么问题?感谢。
答案 0 :(得分:4)
我不熟悉python,所以这可能不会直接应用,但QPixmap::fromImage
是一个返回QPixmap
的静态函数。所以你的代码应该是这样的:
self.pixmap = QtGui.QPixmap.fromImage(self.image)
换句话说,self.pixmap.fromImage
不会更改self.pixmap
,它会返回从您将其作为参数提供的图像生成的新像素图。