pocketpy/include/typings/cute_png.pyi
2025-12-07 21:22:13 +08:00

23 lines
601 B
Python

from array2d import array2d
from vmath import color32
class Image:
@property
def width(self) -> int: ...
@property
def height(self) -> int: ...
def __new__(cls, width: int, height: int) -> "Image": ...
@staticmethod
def from_bytes(data: bytes) -> "Image": ...
def setpixel(self, x: int, y: int, color: color32) -> None: ...
def getpixel(self, x: int, y: int) -> color32: ...
def clear(self, color: color32) -> None: ...
def to_rgb565(self) -> bytes: ...
def loads(data: bytes) -> array2d[color32]: ...
def dumps(image: array2d[color32]) -> bytes: ...