feat: image-converter project init
This commit is contained in:
9
image-converter/src/modules/raw_parser.py
Normal file
9
image-converter/src/modules/raw_parser.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from PIL import Image
|
||||
|
||||
def parse_raw_image(src,target_width, target_height):
|
||||
rawImage = Image.open(src)
|
||||
# Use the PIL raw decoder to read the data.
|
||||
# the 'F;16' informs the raw decoder that we are reading
|
||||
# a little endian, unsigned integer 16 bit data.
|
||||
# img = Image.fromstring('L', imgSize, rawData, 'raw', 'F;16')
|
||||
rawImage.save("foo.png")
|
||||
Reference in New Issue
Block a user