Bitmap
The bitmap class. Bitmaps are expressions of so-called graphics.
Sprites (Sprite) and other objects must be used to display bitmaps on the screen.
Superclass
Class Methods
Bitmap.new(filename)
Loads the graphic file specified in filename and creates a bitmap object.
Also automatically searches files included in RGSS-RTP and encrypted archives. File extensions may be omitted.
Bitmap.new(width, height)
Creates a bitmap object with the specified size.
Methods
dispose
Frees the bitmap. If the bitmap has already been freed, does nothing.
disposed?
Returns TRUE if the bitmap has been freed.
width
Gets the bitmap width.
height
Gets the bitmap height.
rect
Gets the bitmap rectangle (Rect).
blt(x, y, src_bitmap, src_rect[, opacity])
Performs a block transfer from the src_bitmap box src_rect (Rect) to the specified bitmap coordinates (x, y).
opacity can be set from 0 to 255.
stretch_blt(dest_rect, src_bitmap, src_rect[, opacity])
Performs a block transfer from the src_bitmap box src_rect (Rect) to the specified bitmap box dest_rect (Rect).
opacity can be set from 0 to 255.
fill_rect(x, y, width, height, color)fill_rect(rect, color)
Fills the bitmap box (x, y, width, height) or rect (Rect) with color (Color).
clear
Clears the entire bitmap.
get_pixel(x, y)
Gets the color (Color) at the specified pixel (x, y).
set_pixel(x, y, color)
Sets the specified pixel (x, y) to color (Color).
hue_change(hue)
Changes the bitmap's hue within 360 degrees of displacement.
This process is time-consuming. Furthermore, due to conversion errors, repeated hue changes may result in color loss.
draw_text(x, y, width, height, str[, align])draw_text(rect, str[, align])
Draws a string str in the bitmap box (x, y, width, height) or rect (Rect).
If the text length exceeds the box's width, the text width will automatically be reduced by up to 60 percent.
Horizontal text is left-aligned by default; set align to 1 to center the text and to 2 to right-align it. Vertical text is always centered.
As this process is time-consuming, redrawing the text with every frame is not recommended.
text_size(str)
Gets the box (Rect) used when drawing a string str with the draw_text method. Does not include the angled portions of italicized text.
Property
font
The font (Font) used to draw a string with the draw_text method.
Last updated