Package | Description |
---|---|
agi.foundation.graphics.imaging |
Provides types for raster and image processing, and for writing JPEG 2000 files.
|
Modifier and Type | Method and Description |
---|---|
static RasterType |
RasterType.getDefault()
Get the enum constant that is considered to be the default.
|
static RasterType |
RasterType.getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
RasterType |
RasterAttributes.getType()
Gets the
RasterType associated with the attributes. |
static RasterType |
RasterType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RasterType[] |
RasterType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
RasterAttributes(int width,
int height,
RasterFormat rasterFormat,
RasterType rasterType)
Initializes a new instance with the width and height of the raster in pixels, and the given
RasterFormat and RasterType . |
RasterAttributes(int width,
int height,
RasterFormat rasterFormat,
RasterType rasterType,
RasterOrientation rasterOrientation)
Initializes a new instance with the width and height of the raster in pixels, and the given
RasterFormat , RasterType , and RasterOrientation . |
RasterAttributes(int width,
int height,
RasterFormat rasterFormat,
RasterType rasterType,
RasterOrientation rasterOrientation,
int rowAlignment)
Initializes a new instance with the width and height of the raster in pixels, and the given
RasterFormat , RasterType , RasterOrientation , and row alignment. |
RasterAttributes(int width,
int height,
RasterFormat rasterFormat,
RasterType rasterType,
RasterOrientation rasterOrientation,
int rowAlignment,
double pixelAspectRatio)
Initializes a new instance with the width and height of the raster in pixels, and the given
RasterFormat , RasterType , RasterOrientation , row alignment, and pixel aspect ratio. |