Python base64與圖片之間的轉換

圖片轉base64python #image轉base64 import base64 with open("C:\\Users\\wonai\\Desktop\\1.jpg","rb") as f:#轉爲二進制格式 base64_data = base64.b64encode(f.read())#使用base64進行加密 print(base64_data) file=o
相關文章
相關標籤/搜索