feat: image-converter project init

This commit is contained in:
2026-01-05 14:34:45 +01:00
parent 20527c6369
commit 275d53d1dc
32 changed files with 573 additions and 0 deletions

View 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")