denoising.py/bmp.py

24 lines
383 B
Python

# ~*~ encoding: utf-8 ~*~ #
###########################
# TRAITEMENT D'IMAGES #
###########################
import dep
import sys
tmp = ""
header = ""
content = ""
with open(sys.argv[1]) as f:
for byte in f.read():
tmp += str( hex( ord(byte) ) )[2:] + ","
headerSize = ( 14 + 9 ) * 8
header = tmp[:headerSize]
content = tmp[headerSize:]
print header
print
print content