Pillow/src/PIL/_imaging.pyi

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
432 B
Python
Raw Normal View History

2024-02-10 11:50:45 +03:00
from typing import Any
2024-05-07 16:59:20 +03:00
from typing_extensions import Buffer
class ImagingCore:
def __getattr__(self, name: str) -> Any: ...
class ImagingFont:
def __getattr__(self, name: str) -> Any: ...
class ImagingDraw:
def __getattr__(self, name: str) -> Any: ...
class PixelAccess:
def __getattr__(self, name: str) -> Any: ...
def font(image, glyphdata: Buffer) -> ImagingFont: ...
2024-02-10 11:50:45 +03:00
def __getattr__(name: str) -> Any: ...