All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.sstoehr.imageoptimizermavenplugin.optimizers.PngQuant Maven / Gradle / Ivy

package de.sstoehr.imageoptimizermavenplugin.optimizers;

import net.oneandone.sushi.fs.Node;

public class PngQuant extends AbstractCliOptimizer {

    public PngQuant() {
        super("pngquant");
    }

    @Override
    protected ProcessBuilder getProcessBuilder(final String executable, Node img) {
        return new ProcessBuilder(executable, "--force", "--ext=.png", img.getURI().getPath());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy