QWebView与Firefox(PDF.js查看器)

时间:2012-08-20 17:00:43

标签: qt firefox qwebview pdf.js

这是我的相关代码:

#include <QtWebKit>
#include <QApplication>

int main(int argc, char *argv[]){
    QApplication app(argc, argv);
    QWebView *view = new QWebView();
    view->load(QUrl("http://mozilla.github.com/pdf.js/web/viewer.html"));
    view->show();
    return app.exec();
}

我遇到的问题是QWebView呈现的某些文档与Firefox不同。我不确定是不是因为文件来自LaTeX,究竟是什么问题。注意一些希腊字母的呈现方式不同。

Firefox:http://i.imgur.com/CKg5f.png

QWebView:http://i.imgur.com/3Pruz.png

使用pdf.js时,有什么办法可以让QWebView像Firefox一样吗?

0 个答案:

没有答案