Forrest logo
back to context overview

pngquant

List of commands for pngquant:

  • pngquant:tldr:02e28 pngquant: Compress a specific PNG and remove metadata.
    $ pngquant --strip ${filename-png}
    try on your machine
    explain this command
  • pngquant:tldr:040bf pngquant: Compress a specific PNG and save it to the given path.
    $ pngquant ${filename-png} --output ${filename-png}
    try on your machine
    explain this command
  • pngquant:tldr:431c3 pngquant: Try to compress a specific PNG with custom quality (skip if below the min value).
    $ pngquant --quality ${0-100} ${filename-png}
    try on your machine
    explain this command
  • pngquant:tldr:5bf2d pngquant: Compress a specific PNG and show progress.
    $ pngquant --verbose ${filename-png}
    try on your machine
    explain this command
  • pngquant:tldr:895a0 pngquant: Compress a specific PNG and skip if the file is larger than the original.
    $ pngquant --skip-if-larger ${filename-png}
    try on your machine
    explain this command
  • pngquant:tldr:d3be9 pngquant: Compress a specific PNG as much as possible and write result to a new file.
    $ pngquant ${filename-png}
    try on your machine
    explain this command
  • pngquant:tldr:da0e6 pngquant: Compress a specific PNG with the number of colors reduced to 64.
    $ pngquant ${64} ${filename-png}
    try on your machine
    explain this command
  • pngquant:tldr:ff92d pngquant: Compress a specific PNG and override original.
    $ pngquant --ext .png --force ${filename-png}
    try on your machine
    explain this command
back to context overview