我是PyQt4的新手。我的问题是当我使用QWebView显示它不显示的pdf文件时 - 但没有错误或任何东西。我甚至在文件路径中添加了“file:///”并启用了pdf viewer插件。这里有没有人遇到过这个问题?
这是我的代码:
import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtWebKit import *
app = QApplication(sys.argv)
web = QWebView()
web.settings().setAttribute(QWebSettings.PluginsEnabled, True)
web.show()
web.load(QUrl("sample.pdf")) # Change path to actual file.
sys.exit(app.exec_())