Luminous Landscape Forum

Raw & Post Processing, Printing => Digital Image Processing => Topic started by: paulbk on November 22, 2007, 06:17:23 pm

Title: Saving TIFF, Pixel Order, Interleaved, Per Channel
Post by: paulbk on November 22, 2007, 06:17:23 pm
TIF Options save file dialog in Photoshop CS3 provides these options:
Pixel Order
--  Interleaved (RGBRGB)
--  Per Channel (RRGGBB)

What do they mean?
Does it matter which one I choose?

p
Title: Saving TIFF, Pixel Order, Interleaved, Per Channel
Post by: rdonson on November 22, 2007, 06:35:36 pm
Quote
TIF Options save file dialog in Photoshop CS3 provides these options:
Pixel Order
--  Interleaved (RGBRGB)
--  Per Channel (RRGGBB)

What do they mean?
Does it matter which one I choose?

p
[a href=\"index.php?act=findpost&pid=155069\"][{POST_SNAPBACK}][/a]

It matters to some programs.  If you print from QImage you'll want to use Interleaved.
Title: Saving TIFF, Pixel Order, Interleaved, Per Channel
Post by: allan67 on November 23, 2007, 04:25:37 am
Quote
TIF Options save file dialog in Photoshop CS3 provides these options:
Pixel Order
--  Interleaved (RGBRGB)
--  Per Channel (RRGGBB)

What do they mean?
Does it matter which one I choose?

p
[a href=\"index.php?act=findpost&pid=155069\"][{POST_SNAPBACK}][/a]

Hello Paul,

The Interleaved order is considered to be more standard way and is recognised by all applications that accept TIFF files.

The Per Channel order allows for a bit faster writes and reads of files, as well as somewhat better compression. But it is not as widely supported by other programmes (like Qimage in the post above).

Normally, modern programmes should be able to read both versions without problem, as both are in the TIFF specification. If some programmes don't like one order or the other - this means that they are not fully compliant with TIFF specs. There's a thread here on LL discussing this with Jeff explaining this in more detail.

Quote
What do they mean?

[a href=\"index.php?act=findpost&pid=155069\"][{POST_SNAPBACK}][/a]

The meaning of the pixel order is the way colour information is written in the file:
- interleaved - the FULL colour for EACH pixel is written in RGB seqence
- per channel - the red values for ALL pixels are written, then green values for ALL pixels, then blue values for ALL pixels

Regards,
Allan
Title: Saving TIFF, Pixel Order, Interleaved, Per Channel
Post by: paulbk on November 23, 2007, 06:20:44 am
Thanks Ron and Allan for complete and readable answers.
p

Quote
Hello Paul,

The Interleaved order is considered to be more standard way and is recognised by all applications that accept TIFF files.

The Per Channel order allows for a bit faster writes and reads of files, as well as somewhat better compression. But it is not as widely supported by other programmes (like Qimage in the post above).

Normally, modern programmes should be able to read both versions without problem, as both are in the TIFF specification. If some programmes don't like one order or the other - this means that they are not fully compliant with TIFF specs. There's a thread here on LL discussing this with Jeff explaining this in more detail.
The meaning of the pixel order is the way colour information is written in the file:
- interleaved - the FULL colour for EACH pixel is written in RGB seqence
- per channel - the red values for ALL pixels are written, then green values for ALL pixels, then blue values for ALL pixels

Regards,
Allan
[a href=\"index.php?act=findpost&pid=155162\"][{POST_SNAPBACK}][/a]