Skip to content

Latest commit

 

History

History
209 lines (125 loc) · 3.31 KB

image.md

File metadata and controls

209 lines (125 loc) · 3.31 KB

Class: image

Represents a bitmap image

images can be created from create_image or load_png

Table of contents

Constructors

Methods

Constructors

constructor

+ new image(): image

Returns: image

Methods

get_alpha

get_alpha(x: number, y: number): number

Returns the alpha channel (between 0-1) at an image coordinate

Parameters:

Name Type
x number
y number

Returns: number


get_blue

get_blue(x: number, y: number): number

Returns the blue channel (between 0-1) at an image coordinate

Parameters:

Name Type
x number
y number

Returns: number


get_green

get_green(x: number, y: number): number

Returns the green channel (between 0-1) at an image coordinate

Parameters:

Name Type
x number
y number

Returns: number


get_pixel

get_pixel(x: number, y: number): number

Returns the pixel value at a coordinate

Parameters:

Name Type
x number
y number

Returns: number


get_red

get_red(x: number, y: number): number

Returns the red channel (between 0-1) at an image coordinate

Parameters:

Name Type
x number
y number

Returns: number


gradient_scale

gradient_scale(rel: number): number

Returns the pixel value at a relative horizontal coordinate

Parameters:

Name Type Description
rel number horizontal relative position (between 0-1)

Returns: number


height

height(): number

Returns the height of this image

Returns: number


save

save(filename: string): any

Saves this image to a file

Parameters:

Name Type
filename string

Returns: any


set_pixel

set_pixel(x: number, y: number, value: number): void

Sets the pixel value at an image coordinate

Parameters:

Name Type
x number
y number
value number

Returns: void


set_pixel_floats

set_pixel_floats(x: number, y: number, r: number, g: number, b: number, a: number): void

Sets the pixel value at an image coordinate

Parameters:

Name Type Description
x number
y number
r number should be between 0-1
g number should be between 0-1
b number should be between 0-1
a number should be between 0-1

Returns: void


width

width(): number

Returns the width of this image

Returns: number