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 RasterOrientation |
RasterOrientation.getDefault()
Get the enum constant that is considered to be the default.
|
static RasterOrientation |
RasterOrientation.getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
RasterOrientation |
RasterAttributes.getOrientation()
Gets the
RasterOrientation associated with the attributes. |
static RasterOrientation |
RasterOrientation.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RasterOrientation[] |
RasterOrientation.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,
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. |