标签: python image
我有一个问题,您可以使用python将图像插入libreoffice文件吗?
我知道如何使用此代码插入文本:
file = open("test.odt", "w") file.write("testing text") file.close()
我不想使用外部库,因为目标计算机只安装了python和tkinter。
有没有办法在python中插入图像?