de.digitalcollections.turbojpeg.lib.enums.TJXOPT Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of imageio-turbojpeg Show documentation
Show all versions of imageio-turbojpeg Show documentation
ImageIO plugin for reading and writing JPEG images via libjpeg-turbo/turbojpeg.
Requires the libjpeg-turbo and turbojpeg shared native libraries to be installed on the system.
package de.digitalcollections.turbojpeg.lib.enums;
public class TJXOPT {
public static int TJXOPT_PERFECT = 1;
public static int TJXOPT_TRIM = 2;
public static int TJXOPT_CROP = 4;
public static int TJXOPT_GRAY = 8;
public static int TJX_OPT_NOOUTPUT = 16;
}