gpt4 book ai didi

python - 使用Python将图像转换为十六进制格式

转载 作者:行者123 更新时间:2023-12-05 01:18:28 24 4
gpt4 key购买 nike

我在 tmp 文件夹下有一个 jpg 文件。

upload_path = /tmp/resized-test.jpg

我一直在使用下面的代码:

方法一

with open(upload_path, "rb") as image_file:
encoded_string = base64.b64encode(image_file.read())

方法二

def imgToHex(file):
string = ''
with open(file, 'rb') as f:
binValue = f.read(1)
while len(binValue) != 0:
hexVal = hex(ord(binValue))
string += '\\' + hexVal
binValue = f.read(1)
string = re.sub('0x', 'x', string) # Replace '0x' with 'x' for your needs
return string
imgToHex(upload_path)

但他们都没有按照我的意愿工作。

最佳答案

您可以为此使用 binascii 包。它会将其转换为十六进制字符串。

import binascii
filename = 'test.png'
with open(filename, 'rb') as f:
content = f.read()
print(binascii.hexlify(content))

关于python - 使用Python将图像转换为十六进制格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45544755/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com