public enum ImageMagickEnvironment extends java.lang.Enum<ImageMagickEnvironment>
MAGICK_CONFIGURE_PATH: to the configuration path to useMAGICK_TEMPORARY_PATH: to the temporary path of the hybris platformNote: the environment variables take precedence!
Tip: you can restrict the maximum conversion time by setting the MAGICK_TIME_LIMIT environment
variable.
System.getenv()| Enum Constant and Description |
|---|
HOME
Set path to search for configuration files in $HOME/.magick if the directory exists.
|
LD_LIBRARY_PATH
Set path to the ImageMagick shareable libraries and other dependent libraries.
|
MAGICK_AREA_LIMIT
Set the maximum width * height of an image that can reside in the pixel cache memory.
|
MAGICK_CODER_FILTER_PATH
Set search path to use when searching for filter process modules (invoked via -process).
|
MAGICK_CODER_MODULE_PATH
Set path where ImageMagick can locate its coder modules.
|
MAGICK_CONFIGURE_PATH
Set path where ImageMagick can locate its configuration files Use this search path to search for configuration
(.xml) files.
|
MAGICK_DEBUG
Set debug options.
|
MAGICK_DISK_LIMIT
Set maximum amount of disk space in bytes permitted for use by the pixel cache.
|
MAGICK_FILE_LIMIT
Set maximum number of open pixel cache files.
|
MAGICK_FONT_PATH
Set path ImageMagick searches for TrueType and Postscript Type1 font files.
|
MAGICK_HOME
Set the path at the top of ImageMagick installation directory.
|
MAGICK_MAP_LIMIT
Set maximum amount of memory map in bytes to allocate for the pixel cache.
|
MAGICK_MEMORY_LIMIT
Set maximum amount of memory in bytes to allocate for the pixel cache from the heap.
|
MAGICK_PRECISION
Set the maximum number of significant digits to be printed.
|
MAGICK_SYNCHRONIZE
Set to true to synchronize image to storage device.
|
MAGICK_TEMPORARY_PATH
Set path to store temporary files.
|
MAGICK_THREAD_LIMIT
Set maximum parallel threads.
|
MAGICK_THROTTLE
Periodically yield the CPU for at least the time specified in milliseconds.
|
MAGICK_TIME_LIMIT
Set maximum time in seconds.
|
| Modifier and Type | Method and Description |
|---|---|
static ImageMagickEnvironment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImageMagickEnvironment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageMagickEnvironment HOME
public static final ImageMagickEnvironment LD_LIBRARY_PATH
public static final ImageMagickEnvironment MAGICK_AREA_LIMIT
public static final ImageMagickEnvironment MAGICK_CODER_FILTER_PATH
public static final ImageMagickEnvironment MAGICK_CODER_MODULE_PATH
public static final ImageMagickEnvironment MAGICK_CONFIGURE_PATH
public static final ImageMagickEnvironment MAGICK_DEBUG
public static final ImageMagickEnvironment MAGICK_DISK_LIMIT
public static final ImageMagickEnvironment MAGICK_FILE_LIMIT
public static final ImageMagickEnvironment MAGICK_FONT_PATH
public static final ImageMagickEnvironment MAGICK_HOME
public static final ImageMagickEnvironment MAGICK_MAP_LIMIT
public static final ImageMagickEnvironment MAGICK_MEMORY_LIMIT
public static final ImageMagickEnvironment MAGICK_PRECISION
public static final ImageMagickEnvironment MAGICK_SYNCHRONIZE
public static final ImageMagickEnvironment MAGICK_TEMPORARY_PATH
public static final ImageMagickEnvironment MAGICK_THREAD_LIMIT
public static final ImageMagickEnvironment MAGICK_THROTTLE
public static final ImageMagickEnvironment MAGICK_TIME_LIMIT
public static ImageMagickEnvironment[] values()
for (ImageMagickEnvironment c : ImageMagickEnvironment.values()) System.out.println(c);
public static ImageMagickEnvironment valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2018 SAP SE. All Rights Reserved.