| AWARE [SYSTEMS] | Imaging expertise for the Delphi developer | |||||||
![]() |
TIFF and LibTiff Mailing List Archive | |||||||
LibTiff Mailing List
TIFF and LibTiff Mailing List Archive Contact
The TIFF Mailing List Homepage |
Thread2005.09.12 19:12 "Re: extracting 16-bit grayscale from photoshop", by Chris CoxInside Photoshop, 16 bit values (as explained in your manual) are 0..32768. In TIFF, 16 bit values are 0..65535. And your first RGB readout in Photoshop was set to 8 bit, which is converting the 16 bit value to an 8 bit value. 0x145e = 5214 [0..65535] = 2607 [0..32768] = 20 [0..255] 3726 [0..32768] = 7452 [0..65535] 29 [0..255] = 7453 [0..65535] So, not only are you looking at the numbers in different scales, but you also made a mistake in measuring the pixel value inside Photoshop. Chris |
|||||||