https://bugs.documentfoundation.org/show_bug.cgi?id=131199

--- Comment #14 from Julien Nabet <[email protected]> ---
Ok digging a bit more in libtiff/tif_getimage.c TIFFRGBAImageOK method
precisely and here's the pb:
Thread 1 "soffice.bin" hit Breakpoint 1, TIFFRGBAImageOK (tif=0x943a3d0,
emsg=0x7ffdc958f5b0 "") at tif_getimage.c:197
197                             if ( td->td_samplesperpixel != 3 ||
colorchannels != 3 || td->td_bitspersample != 8 ) {
(gdb) p td->td_samplesperpixel
$1 = 3
(gdb) p colorchannels
$2 = 3
(gdb) p td->td_bitspersample
$3 = 16

emsg is empty but here's the whole block:
    197 if ( td->td_samplesperpixel != 3 || colorchannels != 3 ||
td->td_bitspersample != 8 ) {
    198 sprintf(emsg,
    199  "Sorry, can not handle image with %s=%"PRIu16", %s=%d and %s=%"PRIu16,
    200  "Samples/pixel", td->td_samplesperpixel,
    201  "colorchannels", colorchannels,
    202  "Bits/sample", td->td_bitspersample);
    203 return 0;

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to