Reducing the file size of a very large images, without changing the image dimensions

后端 未结 12 2147
囚心锁ツ
囚心锁ツ 2021-01-31 08:51

Consider an application handling uploading of potentially very large PNG files.

All uploaded files must be stored to disk for later retrieval. However, the PNG files ca

12条回答
  •  难免孤独
    2021-01-31 09:03

    It depends a lot on what you want at the end, I often like to reduce the number of colors while perserving the size. In many many cases the reduced colors does not matter. Here is an example of reducing the colors to 254.

    convert -colors 254 in.png out.png
    

提交回复
热议问题