PNG optimisation tools

前端 未结 4 676
-上瘾入骨i
-上瘾入骨i 2020-12-08 08:53

A while back I used a PNG optimisation service called (I think) \"smush it\". You fed it a weblink and it returned a zip of all the PNG images with their filesizes nicely, w

4条回答
  •  执念已碎
    2020-12-08 09:15

    Execute with PHP this command line tools

      pngcrush -rem gAMA -rem cHRM -rem iCCP -rem sRGB -brute -l 9 -max -reduce -m 0 -q IMAGE
      optipng -o7 -q pngout.png
      pngout pngout.png -q -y -k0 -s0
      advpng -z -4 pngout.png > /dev/null
    
    • pngcrush
    • OptiPNG
    • pngout
    • advpng

提交回复
热议问题