摘要: Image2String import base64 def image_str(): with open("test.png", "rb") as imageFile: str = base64.b64encode(imageFile.read()) return str String2Image 阅读全文
posted @ 2020-04-02 10:38 jihite 阅读(1456) 评论(0) 推荐(0) 编辑