Packagecom.esri.bacore
Classpublic final class ImageDisplay
InheritanceImageDisplay Inheritance Object

The ImageDisplay class provides the display characteristics of the image to be generated.

See also

ImageDescription


Public Properties
 PropertyDefined By
  imageDPI : Number
The device resolution of the image in dots per inch.
ImageDisplay
  imageHeight : int
The height of the image in pixels.
ImageDisplay
  imageWidth : int
The width of the image in pixels.
ImageDisplay
Public Methods
 MethodDefined By
  
ImageDisplay(imageWidth:int = 1024, imageHeight:int = 768, imageDPI:Number = 96)
Creates a new instance of the ImageDisplay class.
ImageDisplay
Property Detail
imageDPIproperty
imageDPI:Number

The device resolution of the image in dots per inch.

The default value is 96.


Implementation
    public function get imageDPI():Number
    public function set imageDPI(value:Number):void
imageHeightproperty 
imageHeight:int

The height of the image in pixels.

The default value is 768.


Implementation
    public function get imageHeight():int
    public function set imageHeight(value:int):void
imageWidthproperty 
imageWidth:int

The width of the image in pixels.

The default value is 1024.


Implementation
    public function get imageWidth():int
    public function set imageWidth(value:int):void
Constructor Detail
ImageDisplay()Constructor
public function ImageDisplay(imageWidth:int = 1024, imageHeight:int = 768, imageDPI:Number = 96)

Creates a new instance of the ImageDisplay class.

Parameters
imageWidth:int (default = 1024) — Image width.
 
imageHeight:int (default = 768) — Image height.
 
imageDPI:Number (default = 96) — Image device resolution in dots per inch.