https://issues.apache.org/ooo/show_bug.cgi?id=119513
--- Comment #8 from Lei Debin <[email protected]> --- Solution: Here is the code ------------------------------------------------------------------------ case 0x46A : // One byte tag then JPEG (= JFIF) data case 0x6E0 : // One byte tag then PNG data case 0x7A8 : nSkip += 1; // One byte tag then DIB data break; ------------------------------------------------------------------------- So then the case is 0x6E2(One byte tag then JPEG in CMYK color space) the nSkip got the wrong value. We need to add the below: case 0x6E2 : // One byte tag then JPEG in CMYK color space -- You are receiving this mail because: You are the assignee for the bug.
