将图像和文本放入QLabel

时间:2019-04-27 03:51:45

标签: python pyqt qlabel

我有一个这样的段落列表:

list1 = [
  "something",
  "more",
  ...
  "{ //image// }"
  "something"
  ...
  "{ //image// }"
  ...
]

“ {{image //}”文本在列表中出现了一个已知量。我还有另一个列表,其中包含图像的路径,该路径的长度与文本的出现次数相同:

list2 = [
  "path1",
  "path2"
]

现在,我正在使用pyqt,我想显示QLabel中第一个列表的所有元素。 我这样做是这样的:

paragraphs = ""
for element in list1:
    elements += element + "<br>"
my_QLabel.setText(elements)

现在,我想用第二个列表中的图像替换QLabel中的每个字符串{// image //}。 在保留其他文字的同时该如何做?

1 个答案:

答案 0 :(得分:1)

假设第一个列表中{// image //}的数量与第二个列表的长度匹配。在这种情况下,您可以实现替换逻辑:

from PyQt5 import QtCore, QtGui, QtWidgets


def build_text(texts, images, word):
    image_format = """<img src="{}" width="100" height="100">"""
    images_iter = iter(images)
    text = "<br>".join(
        [
            image_format.format(next(images_iter)) if e == word else e
            for e in texts
        ]
    )
    return text


if __name__ == "__main__":
    import sys

    list1 = [
        "something",
        "more",
        "{ //image// }",
        "something",
        "{ //image// }",
        "{ //image// }",
        "more",
        "{ //image// }",
    ]

    list2 = [
        "/path/of/image1.png",
        "/path/of/image2.png",
        "/path/of/image3.png",
        "/path/of/image4.png",
    ]
    app = QtWidgets.QApplication(sys.argv)
    w = QtWidgets.QLabel()
    text = build_text(list1, list2, "{ //image// }")
    w.setText(text)
    w.resize(640, 480)
    w.show()
    sys.exit(app.exec_())