Check pixel interleave

Started by Litwos, October 19, 2018, 06:58:15 AM

Previous topic - Next topic

Litwos

Hi everyone,

I am trying to test the pixel interleave (BSQ, BIL or BIP) of tiff images that I recieve. I did not see a field in the exiftool output.
Did I not look in the right direction?

Thank you! :D

Phil Harvey

The TIFF PlanarConfiguration gives this information:

BIP PlanarConfiguration = Chunky (1)
BSQ PlanarConfiguration = Planar (2)

BIL is implemented in TIFF by using Planar configuration (2) and breaking up the image into strips of one row each (ie. RowsPerStrip = 1).

- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).

Litwos

Thanks for the answer. I will check it and return if I have any problems. :)