# cute_png

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: ...