If a PNG file is embedded in the PDF and the PNG uses a palette (indexed
color), alivepdf may throw an exception in PNGImage.as
This is because of a bug in PNGImage.as at line 74:
stream.readBytes(palBytes, stream.position, n);
This should be:
stream.readBytes(palBytes, 0, n);
Original issue reported on code.google.com by cgauth...@gmail.com on 16 Jan 2015 at 5:57
Original issue reported on code.google.com by
cgauth...@gmail.com
on 16 Jan 2015 at 5:57