ImageGearJava Project > com.accusoft.imagegear.formats Package : ImGearRawLoadOptions Class |
The following tables list the members exposed by ImGearRawLoadOptions.
Name | Description | |
---|---|---|
ImGearRawLoadOptions Constructor | Initializes a new instance of the ImGearRawLoadOptions class object.
Use this class with ImGearFileFormats.loadPage. |
Name | Description | |
---|---|---|
getAlignment | Gets alignment of bytes in raster line. For additional information see ImGearRawAlignment. | |
getBitsPerChannel | Gets the number of bits per color channel. | |
getColorSpace | Gets image color space.
For additional information see com.accusoft.imagegear.core.ImGearColorSpace. | |
getCompression | Gets image compression.
For additional information see ImGearCompressions. | |
getFillOrder | Gets fill order of pixels in byte.
For additional information see ImGearFillOrder. | |
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. (Inherited from com.accusoft.imagegear.formats.ImGearLoadOptions) | |
getFormat | Returns the file format of an image to load, or enables format autodetection. (Inherited from com.accusoft.imagegear.formats.ImGearLoadOptions) | |
getHeight | Gets image height in pixels. | |
getOffset | Gets image data offset in the stream. | |
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. (Inherited from com.accusoft.imagegear.formats.ImGearLoadOptions) | |
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. (Inherited from com.accusoft.imagegear.formats.ImGearLoadOptions) | |
getTilesToStitch | Returns the tiles to be stitched.
The default value is an empty com.accusoft.imagegear.core.shapes.ImGearRectangle object. (Inherited from com.accusoft.imagegear.formats.ImGearLoadOptions) | |
getWidth | Gets image width in pixels. | |
isRasterPacked | Gets a value indicating whether the raster bits are packed. | |
setAlignment | Sets alignment of bytes in raster line. For additional information see ImGearRawAlignment. | |
setBitsPerChannel | Sets the number of bits per color channel. | |
setColorSpace | Sets image color space.
For additional information see com.accusoft.imagegear.core.ImGearColorSpace. | |
setCompression | Sets image compression.
For additional information see ImGearCompressions. | |
setFillOrder | Sets fill order of pixels in byte.
For additional information see ImGearFillOrder. | |
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. (Inherited from com.accusoft.imagegear.formats.ImGearLoadOptions) | |
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. (Inherited from com.accusoft.imagegear.formats.ImGearLoadOptions) | |
setHeight | Sets image height in pixels. | |
setOffset | Sets image data offset in the stream. | |
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. (Inherited from com.accusoft.imagegear.formats.ImGearLoadOptions) | |
setRasterPacked | Sets a value indicating whether the raster bits are packed. | |
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. (Inherited from com.accusoft.imagegear.formats.ImGearLoadOptions) | |
setTilesToStitch | Sets the tiles to be stitched.
The default value is an empty com.accusoft.imagegear.core.shapes.ImGearRectangle object. (Inherited from com.accusoft.imagegear.formats.ImGearLoadOptions) | |
setWidth | Sets image width in pixels. |