檔案 編碼為Base64字串

tslam發表於2024-08-13

參考

import base64

# 讀取檔案內容並編碼為Base64字串
file_path = 'pdf_ceshi.docx'
with open(file_path, 'rb') as file:
    file_data = file.read()
    file_base64_str = base64.b64encode(file_data).decode('utf-8')

# 列印Base64字串(或者可以儲存到某個地方)
print(file_base64_str)

相關文章