Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

OptiPNG - Optimize PNG Files | Online Free DevTools by Hexmos

Optimize PNG images with OptiPNG. Compress PNG files and reduce file size for faster loading times. Free online tool, no registration required.

optipng

PNG file optimization utility. More information: https://optipng.sourceforge.net.

  • Compress a PNG with default settings:

optipng {{path/to/file.png}}

  • Compress a PNG with the best compression:

optipng -o {{7}} {{path/to/file.png}}

  • Compress a PNG with the fastest compression:

optipng -o {{0}} {{path/to/file.png}}

  • Compress a PNG and add interlacing:

optipng -i {{1}} {{path/to/file.png}}

  • Compress a PNG and preserve all metadata (including file timestamps):

optipng -preserve {{path/to/file.png}}

  • Compress a PNG and remove all metadata:

optipng -strip all {{path/to/file.png}}

See Also