gpt4 book ai didi

python - 将图像和文本放入 QLabel

转载 作者:行者123 更新时间:2023-12-01 07:57:48 26 4
gpt4 key购买 nike

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

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//}。我怎样才能在保留其他文本的同时做到这一点?

最佳答案

假设第一个列表中{//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_())

关于python - 将图像和文本放入 QLabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55877105/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com