25 lines
642 B
Python
25 lines
642 B
Python
from typing import ClassVar
|
|
|
|
from .base import OptimizerBase
|
|
|
|
__all__ = ["Pngquant"]
|
|
|
|
|
|
class Pngquant(OptimizerBase):
|
|
"""https://pngquant.org/"""
|
|
|
|
library_name: ClassVar[str] = "pngquant"
|
|
image_format: ClassVar[str] = "png"
|
|
|
|
@classmethod
|
|
def get_command_arguments(
|
|
cls, file_path: str, progressive: bool = False
|
|
) -> list[str]:
|
|
return [
|
|
"--force", # allow overwriting existing files
|
|
"--strip", # remove optional metadata
|
|
"--skip-if-larger",
|
|
file_path, # the file as input
|
|
"--output",
|
|
file_path, # the file as output
|
|
]
|