|
array(surface)
Return data array of the Surface argument.
Array consists of pixel data arranged by [y,x] in RGBA format.
Data array most consistent to ImageData format. |
|
|
|
array2d(surface,
copydata=False)
Return data array of the Surface argument.
Array consists of pixel data arranged by [x,y] in integer color format.
Provides an interface to ImageData format.
Creates a new formatted array if optional copydata argument is True. |
|
|
|
array3d(surface,
copydata=False)
Return data array of the Surface argument.
Array consists of pixel data arranged by [x,y] in RGB format.
Provides an interface to ImageData format.
Creates a new formatted array if optional copydata argument is True. |
|
|
|
array_alpha(surface,
copydata=False)
Return data array of the Surface argument.
Array consists of pixel data arranged by [x,y] of pixel alpha value.
Provides an interface to ImageData format.
Creates a new formatted array if optional copydata argument is True. |
|
|
|
make_surface(array)
Generates image pixels from array data.
Argument array containing image data.
Return Surface generated from array. |
|
|
|
blit_array(surface,
array)
Generates image pixels from array data.
Arguments include destination Surface and array containing image data. |
|
|