Packageorg.openzoom.flash.descriptors
Interfacepublic interface IImagePyramidLevel
ImplementorsImagePyramidLevel

Interface of a level of a multiscale image pyramid.



Public Properties
 PropertyDefined by
  height : uint
[read-only] Returns the height of this level in pixels.
IImagePyramidLevel
  index : int
[read-only] Returns the index of this level which is in the range [0, numLevels)
IImagePyramidLevel
  numColumns : int
[read-only] Returns the number of columns of tiles for this level.
IImagePyramidLevel
  numRows : int
[read-only] Returns the number of rows of tiles for this level.
IImagePyramidLevel
  width : uint
[read-only] Returns the width of this level in pixels.
IImagePyramidLevel
Public Methods
 MethodDefined by
  
Returns a copy of this object.
IImagePyramidLevel
  
getTileBounds(column:int, row:int):Rectangle
Returns the bounds of the specified tile.
IImagePyramidLevel
  
getTileURL(column:int, row:int):String
Returns the URL of the tile at the specified position.
IImagePyramidLevel
Property detail
heightproperty
height:uint  [read-only]

Returns the height of this level in pixels.

Implementation
    public function get height():uint
indexproperty 
index:int  [read-only]

Returns the index of this level which is in the range [0, numLevels)

Implementation
    public function get index():int
numColumnsproperty 
numColumns:int  [read-only]

Returns the number of columns of tiles for this level.

Implementation
    public function get numColumns():int
numRowsproperty 
numRows:int  [read-only]

Returns the number of rows of tiles for this level.

Implementation
    public function get numRows():int
widthproperty 
width:uint  [read-only]

Returns the width of this level in pixels.

Implementation
    public function get width():uint
Method detail
clone()method
public function clone():IImagePyramidLevel

Returns a copy of this object.

Returns
IImagePyramidLevel
getTileBounds()method 
public function getTileBounds(column:int, row:int):Rectangle

Returns the bounds of the specified tile.

Parameters
column:int
 
row:int

Returns
Rectangle
getTileURL()method 
public function getTileURL(column:int, row:int):String

Returns the URL of the tile at the specified position.

Parameters
column:int
 
row:int

Returns
String