de.redsix.pdfcompare.env.DefaultEnvironment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdfcompare Show documentation
Show all versions of pdfcompare Show documentation
A simple Java library to compare two PDF files. Files are rendered and compared pixel by pixel.
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