[Python]圖片轉成base64碼 發表於 2014-11-20 更新於 2021-06-27 分類於 Python Disqus: 實作異常的順力^^ image.py1234567import base64fp = open("a.jpg","rb")img = fp.read()fp.close()print(base64.b64encode(img)) 在接下來使用requests來實作 image.py12imgdata = requests.get(imgurl).contentimgb64 = base64.b64encode(imgdata) 完成:D