|
applyFilter
|
Takes a source image and a filter object
and generates the filtered image.
Flash Lite 3.1 does not
support filters, so this method is not supported.
|
|
clone(): BitmapData
|
Returns a new BitmapData object that is
a clone of the original instance with an exact copy of the contained
bitmap.
|
|
colorTransform(rect:Rectangle, colorTransform:ColorTransform) : Void
|
Adjusts the color values in a specified
area of a bitmap image by using a ColorTransform object.
|
|
copyChannel(sourceBitmap:BitmapData, sourceRect: Rectangle, destPoint:Point, sourceChannel:Number, destChannel: Number: Void
|
Transfers data from one channel of another
BitmapData object or the current BitmapData object into a channel
of the current BitmapData object.
|
|
copyPixels(sourceBitmap:BitmapData, sourceRect :Rectangle, destPoint:Point, [alphaBitmap:BitmapData] , [alphaPoint:Point, [mergeAlpha:Boolean] ) : Void
|
Provides a fast routine to perform pixel
manipulation between images with no stretching, rotation, or color
effects.
|
|
dispose() : Void
|
Frees memory that is used to store the BitmapData
object.
|
|
draw(source:Object, [matrix:Matrix],[colorTransform:ColorTransform],[blendMode:Object],[cliprect:Rectangle],[smooth:Boolean]) : Void
|
Draws a source image or movie clip onto
a destination image, using the Flash Lite player vector renderer.
|
|
fillRect(rect:Rectangle,color:Number) : Void
|
Fills a rectangular area of pixels with
a specified ARGB color.
|
|
floodFill(x:Number, y:Number, color:Number) : Void
|
Performs a flood fill operation on an image
starting at an (x, y) coordinate and filling with
a certain color.
|
|
generateFilterRect
|
Determines the destination rectangle that
the applyFilter() method call affects, given a
BitmapData object, a source rectangle, and a filter object.
Flash
Lite does not support this method.
|
|
getColorBoundsRect(mask:Number, color:Number, [findColor:Boolean] ) :Rectangle
|
Determines a rectangular region that fully
encloses all pixels of a specified color within the bitmap image.
|
|
getPixel(x:Number, y:Number) : Number
|
Returns an integer that represents an RGB
pixel value from a BitmapData object at a specific point (x, y).
|
| |
getPixel32(x:Number, y:Number) : Number
|
Returns an ARGB color value that contains
alpha channel data and RGB data.
|
|
hitTest(firstPoint:Point, firstAlphaThreshold:Number, secondObject:Object, [secondBitmapPoint:Point] ,[secondAlphaThreshold:Number] ) :Boolean
|
Performs pixel-level hit detection between
one bitmap image and a point, rectangle or other bitmap image.
|
static
|
loadBitmap(id:String): BitmapData
|
Returns a new BitmapData object that contains
a bitmap image representation of the symbol that is identified by
a specified linkage ID in the library.
|
|
merge(sourceBitmap:BitmapData, sourceRect:Rectangle, destPoint:Point, redMult:Number, greenMult:Number, blueMult:Number, alphaMult:Number) : Void
|
Performs per-channel blending from a source
image to a destination image.
|
|
noise
|
Fills an image with pixels representing
random noise.
Flash Lite does not support this method.
|
|
paletteMap
|
Remaps the color channel values in an image
that has up to four arrays of color palette data, one for each channel.
Flash
Lite does not support this method.
|
|
perlinNoise
|
Generates a Perlin noise image.
Flash
Lite does not support this method.
|
|
pixelDissolve
|
Performs a pixel dissolve either from a
source image to a destination image or by using the same image.
Flash
Lite does not support this method.
|
|
scroll
|
Scrolls an image by a certain (x, y)
pixel amount.
Flash Lite does not support this method.
|
|
setPixel(x:Number, y:Number, color:Number) : Void
|
Sets the color of a single pixel of a BitmapData
object.
|
|
setPixel32(x:Number, y:Number, color:Number) : Void
|
Sets the color and alpha transparency values
of a single pixel of a BitmapData object.
|
|
threshold
|
Tests pixel values in an image against a
specified threshold and sets pixels that pass the test to new color
values.
Flash Lite does not support this method.
|