gpt4 book ai didi

python - 如何在 Python 中更改图像的 MD5 哈希值?

转载 作者:行者123 更新时间:2023-11-28 22:00:13 29 4
gpt4 key购买 nike

我有一个图像文件,想使用 Python 编辑图像而不明显修改图片,同时仍然更改文件的 MD5 哈希值。

执行此操作的最佳方法是什么?

最佳答案

import hashlib
hashlib.md5(open('image.png','rb').read()).hexdigest() # rb = readbyte ,so it will work for text as well as media (image,video) files

输出>>> '724c6d87452c3a137ef1499c2d4b6576' # md5哈希值

file = open('image.png', 'rb').read()
with open('new_image.png', 'wb') as new_file:
new_file.write(file+'\0') #here we are adding a null to change the file content

hashlib.md5(open('new_image.png','rb').read()).hexdigest()

output >>> 'a345838e8af07b65344e19989c7c5d85' #同一媒体文件的新md5哈希值

关于python - 如何在 Python 中更改图像的 MD5 哈希值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15254514/

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