Only support color_type = 2
Gutenex.PDF.Builders.ImageBuilder.add_image_extra_object only support color_type: 2, my png is 6
yes! I'm almost done with this one. I've been rewriting SenecaSystems/Imagineer to handle every color type.
is possible convert png color_type 6 to color_type 2 using gimp?
You may be able to do it with imagemagick. The color type indicates which palettes to use. Color type 2 is for RGB. 6 means RGB plus an alpha value. So you could convert them, but you would lose the alpha (if this matters to you.)
If it does matter, I need to add support for all image types. That is something I should do anyway and will work on in parallel with Imagineer
Okay, I've just merged in changes to SenecaSystems/Imagineer to handle reading and writing for all color types.
Next up is supporting all of them in gutenex which should, in theory, not be impossible