new BitmapData(game, key, width, height)
Creates a new BitmapData object.
Parameters:
| Name | Type | Argument | Default | Description |
|---|---|---|---|---|
game |
Phaser.Game | A reference to the currently running game. |
||
key |
string | Internal Phaser reference key for the render texture. |
||
width |
number |
<optional> |
100 | The width of the BitmapData in pixels. |
height |
number |
<optional> |
100 | The height of the BitmapData in pixels. |
- Source:
Members
-
baseTexture
-
- Source:
Properties:
Name Type Description baseTexturePIXI.BaseTexture The PIXI.BaseTexture.
-
buffer
-
- Source:
Properties:
Name Type Description bufferArrayBuffer An ArrayBuffer the same size as the context ImageData.
-
canvas
-
- Source:
Properties:
Name Type Description canvasHTMLCanvasElement The canvas to which this BitmapData draws.
-
context
-
- Source:
Properties:
Name Type Description contextCanvasRenderingContext2D The 2d context of the canvas.
-
ctx
-
- Source:
Properties:
Name Type Description ctxCanvasRenderingContext2D A reference to BitmapData.context.
-
data
-
- Source:
Properties:
Name Type Description dataUint8ClampedArray A Uint8ClampedArray view into BitmapData.buffer.
-
dirty
-
- Source:
Properties:
Name Type Description dirtyboolean If dirty this BitmapData will be re-rendered.
-
disableTextureUpload
-
- Source:
Properties:
Name Type Description disableTextureUploadboolean If disableTextureUpload is true this BitmapData will never send its image data to the GPU when its dirty flag is true.
-
game
-
- Source:
Properties:
Name Type Description gamePhaser.Game A reference to the currently running game.
-
height
-
- Source:
Properties:
Name Type Description heightnumber The height of the BitmapData in pixels.
-
imageData
-
- Source:
Properties:
Name Type Description imageDataImageData The context image data.
-
key
-
- Source:
Properties:
Name Type Description keystring The key of the BitmapData in the Cache, if stored there.
-
pixels
-
- Source:
Properties:
Name Type Description pixelsUint32Array An Uint32Array view into BitmapData.buffer.
-
texture
-
- Source:
Properties:
Name Type Description texturePIXI.Texture The PIXI.Texture.
-
textureFrame
-
- Source:
Properties:
Name Type Description textureFramePhaser.Frame The Frame this BitmapData uses for rendering.
-
type
-
- Source:
Properties:
Name Type Description typenumber The const type of this object.
-
width
-
- Source:
Properties:
Name Type Description widthnumber The width of the BitmapData in pixels.
Methods
-
add(object)
-
Updates the given objects so that they use this BitmapData as their texture. This will replace any texture they will currently have set.
Parameters:
Name Type Description objectPhaser.Sprite | Array.<Phaser.Sprite> | Phaser.Image | Array.<Phaser.Image> Either a single Sprite/Image or an Array of Sprites/Images.
- Source:
-
alphaMask(source, mask)
-
Draws the given image onto this BitmapData using an image as an alpha mask.
Parameters:
Name Type Description sourceHTMLImage | string The Image to draw. If you give a key it will try and find the Image in the Game.Cache.
maskHTMLImage | string The Image to use as the alpha mask. If you give a key it will try and find the Image in the Game.Cache.
- Source:
-
circle(x, y, radius, fillStyle)
-
Draws a filled Circle to the BitmapData at the given x, y coordinates and radius in size.
Parameters:
Name Type Argument Description xnumber The x coordinate to draw the Circle at. This is the center of the circle.
ynumber The y coordinate to draw the Circle at. This is the center of the circle.
radiusnumber The radius of the Circle in pixels. The radius is half the diameter.
fillStylestring <optional>
If set the context fillStyle will be set to this value before the circle is drawn.
- Source:
-
clear()
-
Clears the BitmapData context using a clearRect.
- Source:
-
cls()
-
Clears the BitmapData context using a clearRect.
- Source:
-
copyPixels(source, area, destX, destY)
-
Copies the pixels from the source image to this BitmapData based on the given area and destination.
Parameters:
Name Type Description sourceHTMLImage | string The Image to draw. If you give a key it will try and find the Image in the Game.Cache.
areaPhaser.Rectangle The Rectangle region to copy from the source image.
destXnumber The destination x coordinate to copy the image to.
destYnumber The destination y coordinate to copy the image to.
- Source:
-
draw(source, x, y)
-
Draws the given image to this BitmapData at the coordinates specified. If you need to only draw a part of the image use BitmapData.copyPixels instead.
Parameters:
Name Type Argument Default Description sourceHTMLImage | string The Image to draw. If you give a string it will try and find the Image in the Game.Cache.
xnumber <optional>
0 The x coordinate to draw the image to.
ynumber <optional>
0 The y coordinate to draw the image to.
- Source:
-
drawSprite(sprite, x, y)
-
Draws the given image to this BitmapData at the coordinates specified. If you need to only draw a part of the image use BitmapData.copyPixels instead.
Parameters:
Name Type Argument Default Description spritePhaser.Sprite | Phaser.Image The Sprite to draw. Must have a loaded texture and frame.
xnumber <optional>
0 The x coordinate to draw the Sprite to.
ynumber <optional>
0 The y coordinate to draw the Sprite to.
- Source:
-
extract(destination, r, g, b, a) → {Phaser.BitmapData}
-
Scans this BitmapData for all pixels matching the given r,g,b values and then draws them into the given destination BitmapData. The destination BitmapData must be large enough to receive all of the pixels that are scanned. Although the destination BitmapData is returned from this method, it's actually modified directly in place, meaning this call is perfectly valid:
picture.extract(mask, r, g, b)Parameters:
Name Type Argument Default Description destinationPhaser.BitmapData The BitmapData that the extracts pixels will be drawn to.
rnumber The red color component, in the range 0 - 255.
gnumber The green color component, in the range 0 - 255.
bnumber The blue color component, in the range 0 - 255.
anumber <optional>
255 The alpha color component, in the range 0 - 255.
- Source:
Returns:
The BitmapData that the extract pixels were drawn on.
- Type
- Phaser.BitmapData
-
fill(r, g, b, a)
-
Fills the BitmapData with the given color.
Parameters:
Name Type Argument Default Description rnumber The red color value, between 0 and 0xFF (255).
gnumber The green color value, between 0 and 0xFF (255).
bnumber The blue color value, between 0 and 0xFF (255).
anumber <optional>
1 The alpha color value, between 0 and 1.
- Source:
-
getPixel(x, y, out) → {object}
-
Get the color of a specific pixel in the context into a color object. If you have drawn anything to the BitmapData since it was created you must call BitmapData.update to refresh the array buffer, otherwise this may return out of date color values, or worse - throw a run-time error as it tries to access an array element that doesn't exist.
Parameters:
Name Type Argument Description xnumber The x coordinate of the pixel to be set. Must lay within the dimensions of this BitmapData.
ynumber The y coordinate of the pixel to be set. Must lay within the dimensions of this BitmapData.
outobject <optional>
An object into which 4 properties will be created: r, g, b and a. If not provided a new object will be created.
- Source:
Returns:
An object with the red, green, blue and alpha values set in the r, g, b and a properties.
- Type
- object
-
getPixel32(x, y) → {number}
-
Get the color of a specific pixel including its alpha value. If you have drawn anything to the BitmapData since it was created you must call BitmapData.update to refresh the array buffer, otherwise this may return out of date color values, or worse - throw a run-time error as it tries to access an array element that doesn't exist. Note that on little-endian systems the format is 0xAABBGGRR and on big-endian the format is 0xRRGGBBAA.
Parameters:
Name Type Description xnumber The x coordinate of the pixel to be set. Must lay within the dimensions of this BitmapData.
ynumber The y coordinate of the pixel to be set. Must lay within the dimensions of this BitmapData.
- Source:
Returns:
A native color value integer (format: 0xAARRGGBB)
- Type
- number
-
getPixelRGB(x, y, out, hsl, hsv) → {object}
-
Get the color of a specific pixel including its alpha value as a color object containing r,g,b,a and rgba properties. If you have drawn anything to the BitmapData since it was created you must call BitmapData.update to refresh the array buffer, otherwise this may return out of date color values, or worse - throw a run-time error as it tries to access an array element that doesn't exist.
Parameters:
Name Type Argument Default Description xnumber The x coordinate of the pixel to be set. Must lay within the dimensions of this BitmapData.
ynumber The y coordinate of the pixel to be set. Must lay within the dimensions of this BitmapData.
outobject <optional>
An object into which 3 properties will be created: r, g and b. If not provided a new object will be created.
hslboolean <optional>
false Also convert the rgb values into hsl?
hsvboolean <optional>
false Also convert the rgb values into hsv?
- Source:
Returns:
An object with the red, green and blue values set in the r, g and b properties.
- Type
- object
-
getPixels(rect) → {ImageData}
-
Gets all the pixels from the region specified by the given Rectangle object.
Parameters:
Name Type Description rectPhaser.Rectangle The Rectangle region to get.
- Source:
Returns:
Returns a ImageData object containing a Uint8ClampedArray data property.
- Type
- ImageData
-
processPixel(callback, callbackContext, x, y, width, height)
-
Scans through the area specified in this BitmapData and sends the color for every pixel to the given callback along with its x and y coordinates. Whatever value the callback returns is set as the new color for that pixel, unless it returns the same color, in which case it's skipped. Note that the format of the color received will be different depending on if the system is big or little endian. It is expected that your callback will deal with endianess. If you'd rather Phaser did it then use processPixelRGB instead. The callback will also be sent the pixels x and y coordinates respectively.
Parameters:
Name Type Argument Default Description callbackfunction The callback that will be sent each pixel color to be processed.
callbackContextobject The context under which the callback will be called.
xnumber <optional>
0 The x coordinate of the top-left of the region to process from.
ynumber <optional>
0 The y coordinate of the top-left of the region to process from.
widthnumber <optional>
The width of the region to process.
heightnumber <optional>
The height of the region to process.
- Source:
-
processPixelRGB(callback, callbackContext, x, y, width, height)
-
Scans through the area specified in this BitmapData and sends a color object for every pixel to the given callback. The callback will be sent a color object with 6 properties:
{ r: number, g: number, b: number, a: number, color: number, rgba: string }. Where r, g, b and a are integers between 0 and 255 representing the color component values for red, green, blue and alpha. Thecolorproperty is an Int32 of the full color. Note the endianess of this will change per system. Thergbaproperty is a CSS style rgba() string which can be used with context.fillStyle calls, among others. The callback will also be sent the pixels x and y coordinates respectively. The callback must return eitherfalse, in which case no change will be made to the pixel, or a new color object. If a new color object is returned the pixel will be set to the r, g, b and a color values given within it.Parameters:
Name Type Argument Default Description callbackfunction The callback that will be sent each pixel color object to be processed.
callbackContextobject The context under which the callback will be called.
xnumber <optional>
0 The x coordinate of the top-left of the region to process from.
ynumber <optional>
0 The y coordinate of the top-left of the region to process from.
widthnumber <optional>
The width of the region to process.
heightnumber <optional>
The height of the region to process.
- Source:
-
rect(x, y, width, height, fillStyle)
-
Draws a filled Rectangle to the BitmapData at the given x, y coordinates and width / height in size.
Parameters:
Name Type Argument Description xnumber The x coordinate of the top-left of the Rectangle.
ynumber The y coordinate of the top-left of the Rectangle.
widthnumber The width of the Rectangle.
heightnumber The height of the Rectangle.
fillStylestring <optional>
If set the context fillStyle will be set to this value before the rect is drawn.
- Source:
-
refreshBuffer(x, y, width, height)
-
DEPRECATED: This method will be removed in Phaser 2.1. Please use BitmapData.update instead.
This re-creates the BitmapData.imageData from the current context. It then re-builds the ArrayBuffer, the data Uint8ClampedArray reference and the pixels Int32Array. If not given the dimensions defaults to the full size of the context.
Parameters:
Name Type Argument Default Description xnumber <optional>
0 The x coordinate of the top-left of the image data area to grab from.
ynumber <optional>
0 The y coordinate of the top-left of the image data area to grab from.
widthnumber <optional>
The width of the image data area.
heightnumber <optional>
The height of the image data area.
- Source:
-
render()
-
If the game is running in WebGL this will push the texture up to the GPU if it's dirty. This is called automatically if the BitmapData is being used by a Sprite, otherwise you need to remember to call it in your render function. If you wish to suppress this functionality set BitmapData.disableTextureUpload to
true.- Source:
-
replaceRGB(r1, g1, b1, a1, r2, g2, b2, a2, region)
-
Replaces all pixels matching one color with another. The color values are given as two sets of RGBA values. An optional region parameter controls if the replacement happens in just a specific area of the BitmapData or the entire thing.
Parameters:
Name Type Argument Description r1number The red color value to be replaced. Between 0 and 255.
g1number The green color value to be replaced. Between 0 and 255.
b1number The blue color value to be replaced. Between 0 and 255.
a1number The alpha color value to be replaced. Between 0 and 255.
r2number The red color value that is the replacement color. Between 0 and 255.
g2number The green color value that is the replacement color. Between 0 and 255.
b2number The blue color value that is the replacement color. Between 0 and 255.
a2number The alpha color value that is the replacement color. Between 0 and 255.
regionPhaser.Rectangle <optional>
The area to perform the search over. If not given it will replace over the whole BitmapData.
- Source:
-
resize()
-
Resizes the BitmapData. This changes the size of the underlying canvas and refreshes the buffer.
- Source:
-
setHSL(h, s, l, region)
-
Sets the hue, saturation and lightness values on every pixel in the given region, or the whole BitmapData if no region was specified.
Parameters:
Name Type Argument Default Description hnumber <optional>
null The hue, in the range 0 - 1.
snumber <optional>
null The saturation, in the range 0 - 1.
lnumber <optional>
null The lightness, in the range 0 - 1.
regionPhaser.Rectangle <optional>
The area to perform the operation on. If not given it will run over the whole BitmapData.
- Source:
-
setPixel(x, y, red, green, blue, alpha, immediate)
-
Sets the color of the given pixel to the specified red, green and blue values.
Parameters:
Name Type Argument Default Description xnumber The x coordinate of the pixel to be set. Must lay within the dimensions of this BitmapData.
ynumber The y coordinate of the pixel to be set. Must lay within the dimensions of this BitmapData.
rednumber The red color value, between 0 and 0xFF (255).
greennumber The green color value, between 0 and 0xFF (255).
bluenumber The blue color value, between 0 and 0xFF (255).
alphanumber The alpha color value, between 0 and 0xFF (255).
immediateboolean <optional>
true If
truethe context.putImageData will be called and the dirty flag set.- Source:
-
setPixel32(x, y, red, green, blue, alpha, immediate)
-
Sets the color of the given pixel to the specified red, green, blue and alpha values.
Parameters:
Name Type Argument Default Description xnumber The x coordinate of the pixel to be set. Must lay within the dimensions of this BitmapData.
ynumber The y coordinate of the pixel to be set. Must lay within the dimensions of this BitmapData.
rednumber The red color value, between 0 and 0xFF (255).
greennumber The green color value, between 0 and 0xFF (255).
bluenumber The blue color value, between 0 and 0xFF (255).
alphanumber The alpha color value, between 0 and 0xFF (255).
immediateboolean <optional>
true If
truethe context.putImageData will be called and the dirty flag set.- Source:
-
shiftHSL(h, s, l, region)
-
Shifts any or all of the hue, saturation and lightness values on every pixel in the given region, or the whole BitmapData if no region was specified. Shifting will add the given value onto the current h, s and l values, not replace them. The hue is wrapped to keep it within the range 0 to 1. Saturation and lightness are clamped to not exceed 1.
Parameters:
Name Type Argument Default Description hnumber <optional>
null The amount to shift the hue by.
snumber <optional>
null The amount to shift the saturation by.
lnumber <optional>
null The amount to shift the lightness by.
regionPhaser.Rectangle <optional>
The area to perform the operation on. If not given it will run over the whole BitmapData.
- Source:
-
update(x, y, width, height)
-
This re-creates the BitmapData.imageData from the current context. It then re-builds the ArrayBuffer, the data Uint8ClampedArray reference and the pixels Int32Array. If not given the dimensions defaults to the full size of the context.
Parameters:
Name Type Argument Default Description xnumber <optional>
0 The x coordinate of the top-left of the image data area to grab from.
ynumber <optional>
0 The y coordinate of the top-left of the image data area to grab from.
widthnumber <optional>
The width of the image data area.
heightnumber <optional>
The height of the image data area.
- Source: