Package | com.esri.bacore |
Class | public final class ImageDisplay |
See also
Property | Defined 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 |
Method | Defined by | ||
---|---|---|---|
ImageDisplay(imageWidth:int = 1024, imageHeight:int = 768, imageDPI:Number = 96)
Creates a new instance of the ImageDisplay class.
| ImageDisplay |
imageDPI | property |
imageDPI:Number
[read-write]The device resolution of the image in dots per inch.
The default value is 96
.
public function get imageDPI():Number
public function set imageDPI(value:Number):void
imageHeight | property |
imageHeight:int
[read-write]The height of the image in pixels.
The default value is 768
.
public function get imageHeight():int
public function set imageHeight(value:int):void
imageWidth | property |
imageWidth:int
[read-write]The width of the image in pixels.
The default value is 1024
.
public function get imageWidth():int
public function set imageWidth(value:int):void
ImageDisplay | () | constructor |
public function ImageDisplay(imageWidth:int = 1024, imageHeight:int = 768, imageDPI:Number = 96)
Creates a new instance of the ImageDisplay class.
ParametersimageWidth:int (default = 1024 ) — Image width.
|
|
imageHeight:int (default = 768 ) — Image height.
|
|
imageDPI:Number (default = 96 ) — Image device resolution in dots per inch.
|