You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Flags --nx --nz should disable all optimizations for pngs right? It works on all images with one weird exception, interlaced pngs causes oxipng to ignore these flags and optimizes the image anyways.
It seems that the default of -i 0 automatically overrides everything else. It turns out you have to pass --nx --nz -i keep to truly disable all optimizations. The behavior should be so that --nx --nz alone keeps the images untouched regardless of them being interlaced or not.
The text was updated successfully, but these errors were encountered:
…ed (#620)
Fixes#619.
Interlacing still defaults to 0 when `--nx` is not specified and can
still be explicitly set even if it is (e.g. `-i 0 --nx` will still
deinterlace).
Environment:
Windows 10 22H2
Flags
--nx --nz
should disable all optimizations for pngs right? It works on all images with one weird exception, interlaced pngs causes oxipng to ignore these flags and optimizes the image anyways.It seems that the default of
-i 0
automatically overrides everything else. It turns out you have to pass--nx --nz -i keep
to truly disable all optimizations. The behavior should be so that--nx --nz
alone keeps the images untouched regardless of them being interlaced or not.The text was updated successfully, but these errors were encountered: