easy-hide
Mis à jour
Mis à jour
with open('corrected.jpg', 'wb') as corrected:
with open('sample.jpg', 'rb') as sample:
corrected.write(sample.read(16))
with open('strange-picture.jpg', 'rb') as strange:
strange.seek(16)
corrected.write(strange.read())