Alpha-blends src_rect from src image to this image at coordinates dest.
Alpha-blends src_rect from src image to this image using mask image at coordinates dst. Alpha channels are required for both src and mask. dst pixels and src pixels will blend if the corresponding mask pixel's alpha value is not 0. src image and mask image must have the same size (width and height) but they can have different formats.
Copies src_rect from src image to this image at coordinates dst.
Blits src_rect area from src image to this image at the coordinates given by dst. src pixel is copied onto dst if the corresponding mask pixel's alpha value is not 0. src image and mask image must have the same size (width and height) but they can have different formats.
Removes the image's mipmaps.
Compresses the image to use less memory. Can not directly access pixel data while the image is compressed. Returns error if the chosen compression mode is not available. See COMPRESS_* constants.
Converts the image's format. See FORMAT_* constants.
Copies src image to this image.
Creates an empty image of given size and format. See FORMAT_* constants. If use_mipmaps is true then generate mipmaps for this image. See the generate_mipmaps method.
Creates a new image of given size and format. See FORMAT_* constants. Fills the image with the given raw data. If use_mipmaps is true then generate mipmaps for this image. See the generate_mipmaps method.
Crops the image to the given width and height. If the specified size is larger than the current size, the extra area is filled with black pixels.
Decompresses the image if it is compressed. Returns an error if decompress function is not available.
Returns ALPHA_BLEND if the image has data for alpha values. Returns ALPHA_BIT if all the alpha values are below a certain threshold or the maximum value. Returns ALPHA_NONE if no data for alpha values is found.
Stretches the image and enlarges it by a factor of 2. No interpolation is done.
Fills the image with a given Color.
Blends low-alpha pixels with nearby pixels.
Flips the image horizontally.
Flips the image vertically.
Generates mipmaps for the image. Mipmaps are pre-calculated and lower resolution copies of the image. Mipmaps are automatically used if the image needs to be scaled down when rendered. This improves image quality and the performance of the rendering. Returns an error if the image is compressed, in a custom format or if the image's width/height is 0.
Returns the image's raw data.
Returns the image’s format. See FORMAT_* constants.
Returns the image's height.
Returns the offset where the image's mipmap with index mipmap is stored in the data dictionary.
Returns the color of the pixel at (x, y) if the image is locked. If the image is unlocked it always returns a Color with the value (0, 0, 0, 1.0).
Returns a new image that is a copy of the image's area specified with rect.
Returns the image's size (width and height).
Returns a Rect2 enclosing the visible portion of the image.
Returns the image's width.
Returns true if the image has generated mipmaps.
Returns true if the image is compressed.
Returns true if the image has no data.
Returns true if all the image's pixels have an alpha value of 0. Returns false if any pixel has an alpha value higher than 0.
Loads an image from file path.
Loads an image from the binary contents of a JPEG file.
Loads an image from the binary contents of a PNG file.
Loads an image from the binary contents of a WebP file.
Locks the data for writing access.
Converts the image's data to represent coordinates on a 3D plane. This is used when the image represents a normalmap. A normalmap can add lots of detail to a 3D surface without increasing the polygon count.
Multiplies color values with alpha values. Resulting color values for a pixel are (color * alpha)/256.
Resizes the image to the given width and height. New pixels are calculated using interpolation. See interpolation constants.
Resizes the image to the nearest power of 2 for the width and height. If square is true then set width and height to be the same.
Saves the image as a PNG file to path.
Sets the Color of the pixel at (x, y) if the image is locked. Example:
Shrinks the image by a factor of 2.
Converts the raw data from the sRGB colorspace to a linear scale.
Unlocks the data and prevents changes.
Holds all of the image's color data in a given format. See FORMAT_* constants.
Image datatype.
Native image datatype. Contains image data, which can be converted to a Texture, and several functions to interact with it. The maximum width and height for an Image is 16384 pixels.