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

de.redsix.pdfcompare.env.DefaultEnvironment Maven / Gradle / Ivy

Go to download

A simple Java library to compare two PDF files. Files are rendered and compared pixel by pixel.

There is a newer version: 1.2.3
Show newest version
package de.redsix.pdfcompare.env;

import com.typesafe.config.Config;
import com.typesafe.config.ConfigFactory;

public class DefaultEnvironment {

    public static Environment create() {
        ConfigFactory.invalidateCaches();
        Config config = ConfigFactory.systemEnvironment().withFallback(ConfigFactory.load());
        return new ConfigFileEnvironment(config);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy