📜  将图像转换为字符串以在 tkinter 中使用 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:36.565000             🧑  作者: Mango

代码示例1
import base64

with open("path/to/image.png", "rb") as image_file:
    image_data_base64_encoded_string = base64.b64encode(image_file.read())