#
cute_png
This module is optional. Set option PK_BUILD_MODULE_CUTE_PNG
to ON
in your CMakeLists.txt
to enable it.
Wraps cute_png.h for PNG image loading and saving.
#
Source code
from array2d import array2d
from vmath import color32
def loads(data: bytes) -> array2d[color32]: ...
def dumps(image: array2d[color32]) -> bytes: ...