ImageGearJava Project > com.accusoft.imagegear.formats Package : ImGearLoadOptions Class |
The following tables list the members exposed by ImGearLoadOptions.
Name | Description | |
---|---|---|
ImGearLoadOptions Constructor | Initializes a new instance of the ImGearLoadOptions class object. |
Name | Description | |
---|---|---|
getFilters | Returns filter settings to be used in a particular image loading operation.
If this property is not null, it overrides the global settings specified by ImGearFileFormats.getFilters. The default value is null. | |
getFormat | Returns the file format of an image to load, or enables format autodetection. | |
getParseXMP | Returns a value indicating whether ImageGear shall parse XMP stream or provide it to the application as a single binary tag.
The default value is true. | |
getThumbnailLoading | Returns a value indicating whether to load image thumbnail instead of the actual image.
Use this value if you need to load an image thumbnail. This will only work for file formats that support storing a thumbnail, and when thumbnail is actually stored as a part of an image. Otherwise, ImageGear will throw ImGearException with error code com.accusoft.imagegear.core.ImGearErrorCodes.THUMBNAIL_NOT_PRESENT. In this case, load the entire image and create a thumbnail using com.accusoft.imagegear.processing.ImGearProcessing.createThumbnail method. The default value is false. | |
getTilesToStitch | Returns the tiles to be stitched.
The default value is an empty com.accusoft.imagegear.core.shapes.ImGearRectangle object. | |
setFilters | Sets filter settings to be used in a particular image loading operation.
If this property is not null, it overrides the global settings specified by ImGearFileFormats.getFilters. This property can be used in a multithreaded application, in order to use different filter control parameters in different threads. The default value is null. | |
setFormat | Sets the file format of an image to load, or enables format autodetection.
Use this method when you need to bypass auto-detection and specify image format explicitly. Specifying ImGearFormats.UNKNOWN will force auto-detection. The default value is ImGearFormats.UNKNOWN. | |
setParseXMP | Sets a value indicating whether ImageGear shall parse XMP stream or provide it to the application as a single binary tag.
The default value is true. | |
setThumbnailLoading | Sets a value indicating whether to load image thumbnail instead of the actual image.
Use this property if you need to load an image thumbnail. This will only work for file formats that support storing a thumbnail, and when thumbnail is actually stored as a part of an image. Otherwise, ImageGear will throw ImGearException with error code com.accusoft.imagegear.core.ImGearErrorCodes.THUMBNAIL_NOT_PRESENT. In this case, load the entire image and create a thumbnail using com.accusoft.imagegear.processing.ImGearProcessing.createThumbnail method. The default value is false. | |
setTilesToStitch | Sets the tiles to be stitched.
The default value is an empty com.accusoft.imagegear.core.shapes.ImGearRectangle object. |