BitMap

继承: Resource < RefCounted < Object

Boolean matrix.

描述

A two-dimensional array of boolean values, can be used to efficiently store a binary matrix (every matrix element takes only one bit) and query the values using natural cartesian coordinates.

方法

Imageconvert_to_image ( ) const1
voidcreate ( size: Vector2i )
voidcreate_from_image_alpha ( image: Image, threshold: float = 0.1 )
boolget_bit ( x: int, y: int ) const1
boolget_bitv ( position: Vector2i ) const1
Vector2iget_size ( ) const1
intget_true_bit_count ( ) const1
voidgrow_mask ( pixels: int, rect: Rect2i )
Array PackedVector2Arrayopaque_to_polygons ( rect: Rect2i, epsilon: float = 2.0 ) const1
voidresize ( new_size: Vector2i )
voidset_bit ( x: int, y: int, bit: bool )
voidset_bit_rect ( rect: Rect2i, bit: bool )
voidset_bitv ( position: Vector2i, bit: bool )

方法说明

Image convert_to_image ( ) const1

Returns an image of the same size as the bitmap and with a Format of type Image.FORMAT_L8. true bits of the bitmap are being converted into white pixels, and false bits into black.


void create ( size: Vector2i )

Creates a bitmap with the specified size, filled with false.


void create_from_image_alpha ( image: Image, threshold: float = 0.1 )

Creates a bitmap that matches the given image dimensions, every element of the bitmap is set to false if the alpha value of the image at that position is equal to threshold or less, and true in other case.


bool get_bit ( x: int, y: int ) const1

Returns bitmap's value at the specified position.


bool get_bitv ( position: Vector2i ) const1

Returns bitmap's value at the specified position.


Vector2i get_size ( ) const1

Returns bitmap's dimensions.


int get_true_bit_count ( ) const1

Returns the number of bitmap elements that are set to true.


void grow_mask ( pixels: int, rect: Rect2i )

Applies morphological dilation or erosion to the bitmap. If pixels is positive, dilation is applied to the bitmap. If pixels is negative, erosion is applied to the bitmap. rect defines the area where the morphological operation is applied. Pixels located outside the rect are unaffected by grow_mask.


Array PackedVector2Array opaque_to_polygons ( rect: Rect2i, epsilon: float = 2.0 ) const1

Creates an Array of polygons covering a rectangular portion of the bitmap. It uses a marching squares algorithm, followed by Ramer-Douglas-Peucker (RDP) reduction of the number of vertices. Each polygon is described as a PackedVector2Array of its vertices.

To get polygons covering the whole bitmap, pass:


    Rect2(Vector2(), get_size())

epsilon is passed to RDP to control how accurately the polygons cover the bitmap: a lower epsilon corresponds to more points in the polygons.


void resize ( new_size: Vector2i )

Resizes the image to new_size.


void set_bit ( x: int, y: int, bit: bool )

Sets the bitmap's element at the specified position, to the specified value.


void set_bit_rect ( rect: Rect2i, bit: bool )

Sets a rectangular portion of the bitmap to the specified value.


void set_bitv ( position: Vector2i, bit: bool )

Sets the bitmap's element at the specified position, to the specified value.

2

本方法通常需要用户覆盖才能生效。

1

本方法无副作用,不会修改该实例的任何成员变量。

3

本方法除了能接受在此处描述的参数外,还能够继续接受任意数量的参数。

4

本方法用于构造某个类型。

5

调用本方法无需实例,可直接使用类名进行调用。

6

本方法描述的是使用本类型作为左操作数的有效运算符。

7

这个值是由下列位标志构成位掩码的整数。

8

无返回值。