For people who wants to use this in grayscale and possibly other unsupported bitdepths and color combinations I recommend using other png minimizers then use advdef afterwards.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
AdvPng can support palette but not support grayscale. So you must convert grayscale to palette first then use AdvPng. Here is the batch code(use ImageWorsener http://entropymine.com/imageworsener/):
cd /D "%~dp0"
for /R %1 %%a in (*.png) do imagew -noopt "grayscale" "%%~a" "%%~a"
pause
Just drag and drop the images' folder to this batch file.
Last edit: Kodo 2014-11-02
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The latest version reports that it cannot process
this type of png.
PNG wriiten by "The Gimp", seems to read and
display correctly.
Any chance to add support in a upcomming release?
For people who wants to use this in grayscale and possibly other unsupported bitdepths and color combinations I recommend using other png minimizers then use advdef afterwards.
AdvPng can support palette but not support grayscale. So you must convert grayscale to palette first then use AdvPng. Here is the batch code(use ImageWorsener http://entropymine.com/imageworsener/):
cd /D "%~dp0"
for /R %1 %%a in (*.png) do imagew -noopt "grayscale" "%%~a" "%%~a"
pause
Just drag and drop the images' folder to this batch file.
Last edit: Kodo 2014-11-02