I am using imagemagick to -resize an 8 MB image. The command is
convert "big.png" -resize "14384x49152" "result-resize.png"
Unfortunately the size of result-resize.png grows from 8MB to 31MB.
The only workaround for me is to apply a png optimizer afterwards. But I am batch processing many images this uses a lot of processing time.
So is there a alternative unix image resize program? Or would one know a different workaround?
(I tried many options and only "-filter Box" got back to 8MB at the expense of a very noticeable quality reduction).