Packagede.popforge.imageprocessing.errors
Classpublic final class UnequalDimensionsError
InheritanceUnequalDimensionsError Inheritance flash.events.ErrorEvent

The UnequalDimensionsError object is thrown when there are two unequal dimensions.

See also

de.popforge.imageprocessing.utils.DimensionTest


Public Methods
 MethodDefined by
  
UnequalDimensionsError(bitmapWidth:int, bitmapHeight:int, imageWidth:int, imageHeight:int)
Creates an UnequalDimensionsError object that contains specific information about the error.
UnequalDimensionsError
Constructor detail
UnequalDimensionsError()constructor
public function UnequalDimensionsError(bitmapWidth:int, bitmapHeight:int, imageWidth:int, imageHeight:int)

Creates an UnequalDimensionsError object that contains specific information about the error.

Parameters
bitmapWidth:int — The width of the BitmapData object in pixels.
 
bitmapHeight:int — The height of the BitmapData object in pixels.
 
imageWidth:int — The width of the Image object in pixels.
 
imageHeight:int — The height of the Image object in pixels.