This repository has been archived on 2026-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RequestCounter/bin/tests/img2base64.py
T

11 lines
253 B
Python
Raw Permalink Normal View History

#!/usr/bin/env python3
# -- coding:utf-8 --
# @Author: markushammered@gmail.com
# @Development Tool: PyCharm
# @Create Time: 2022/2/12
2022-02-12 11:29:54 +08:00
# @File Name: img2base64.py
import base64
print(base64.b64encode(open('example.png', 'rb').read()).decode('utf-8'))