<br><font size=2 face="sans-serif">TIFF is one type of data that I need
to read in. &nbsp;Some of the RGB images are pixel interleaved while others
are planar (non-interleaved). &nbsp;I was intending to use the GDALDataset::RasterIO
function to read in my data, as I only need a buffer containing the entire
image exactly as it exists on disk. &nbsp;If I'm going to use GDALDataset::RasterIO,
I need to know the offset between bands (it's the last parameter to the
function). &nbsp;That value is going to be different depending on whether
or not the bands are interleaved. &nbsp;If I was using libtiff, I could
get the TIFF_TAG that told me how the data was organized, but how can I
get that information with GDAL so I know how to fill in that last parameter
to GDALDataset::RasterIO correctly?</font>
<br>
<br><font size=2 face="sans-serif">Or... is there a better way to do this
altogether? &nbsp;</font>
<br>
<br><font size=2 face="sans-serif">Thanks,</font>
<br><font size=2 face="sans-serif"><br>
Todd</font>