在QTextEdit中显示带有图像的HTML文件

时间:2018-12-18 09:29:46

标签: html image qt qtextedit

我正在尝试在QTextedit中显示一个HTML文件,其中包含图像和逃离列表。 但是,图像和逃逸都不会出现。 我的代码如下:

QFile file(QString::fromUtf8(st.c_str()));
file.open(QFile::ReadOnly | QFile::Text);
ui->textEdit->setHtml(file.readAll());
file.close();

图像的HTML文档是第一个:

<!doctype html>
<html>
    <img src="/home/build-untitled-Desktop-Release/about/Versions_SOFT_files/image001.jpg">
    <p>paragraph which contains some text</p>
</html>

为了逃跑,我使用了一个Word文件,并在Windows上将其转换为html。 为什么不出现图像和逃逸的任何想法?

0 个答案:

没有答案