I have raw bytes in a binary file. Each pixels is two bytes.
I'm using this command to convert it into TIFF:
Code: Select all
convert.exe -size 1200x1024 -depth 16 -endian LSB gray:rawFile -compress lzw tiffName.tif
What am I missing ?
Code: Select all
convert.exe -size 1200x1024 -depth 16 -endian LSB gray:rawFile -compress lzw tiffName.tif
Code: Select all
convert.exe -size 1200x1024 -depth 16 -endian LSB gray:rawFile -compress lzw -auto-level tiffName.tif