from _typeshed import FileDescriptorOrPath, Incomplete, SupportsRead
from enum import IntEnum
from typing import Protocol
from typing_extensions import Final, Literal

from PIL.Image import Transpose

class Layout(IntEnum):
    BASIC: Literal[0]
    RAQM: Literal[1]

MAX_STRING_LENGTH: Final[int] = 1_000_000

class _Font(Protocol):
    def getmask(self, __text: str | bytes, __mode: str = ..., direction=..., features=...): ...

class ImageFont:
    def getmask(self, text: str | bytes, mode: str = "", direction=..., features=...): ...
    def getbbox(self, text, *args, **kwargs): ...
    def getlength(self, text, *args, **kwargs): ...

class FreeTypeFont:
    path: str | bytes | SupportsRead[bytes] | None
    size: int
    index: int
    encoding: str
    layout_engine: Layout
    font_bytes: bytes  # Only exists under some circumstances.
    font: Incomplete
    def __init__(
        self,
        font: str | bytes | SupportsRead[bytes] | None = None,
        size: int = 10,
        index: int = 0,
        encoding: str = "",
        layout_engine: Layout | None = None,
    ) -> None: ...
    def getname(self) -> tuple[str, str]: ...
    def getmetrics(self) -> tuple[int, int]: ...
    def getlength(
        self,
        text: str | bytes,
        mode: str = "",
        direction: Literal["ltr", "rtl", "ttb"] | None = None,
        features: Incomplete | None = None,
        language: str | None = None,
    ) -> float: ...
    def getbbox(
        self,
        text: str | bytes,
        mode: str = "",
        direction=None,
        features=None,
        language: str | None = None,
        stroke_width: int = 0,
        anchor: str | None = None,
    ) -> tuple[int, int, int, int]: ...
    def getmask(
        self,
        text: str | bytes,
        mode: str = "",
        direction: Literal["ltr", "rtl", "ttb"] | None = None,
        features: Incomplete | None = None,
        language: str | None = None,
        stroke_width: float = 0,
        anchor: str | None = None,
        ink=0,
        start: tuple[float, float] | None = None,
    ): ...
    def getmask2(
        self,
        text: str | bytes,
        mode: str = "",
        direction: Literal["ltr", "rtl", "ttb"] | None = None,
        features: Incomplete | None = None,
        language: str | None = None,
        stroke_width: float = 0,
        anchor: str | None = None,
        ink=0,
        start: tuple[float, float] | None = None,
        *args,
        **kwargs,
    ): ...
    def font_variant(
        self,
        font: str | bytes | SupportsRead[bytes] | None = None,
        size: int | None = None,
        index: int | None = None,
        encoding: str | None = None,
        layout_engine: Layout | None = None,
    ) -> FreeTypeFont: ...
    def get_variation_names(self): ...
    def set_variation_by_name(self, name): ...
    def get_variation_axes(self): ...
    def set_variation_by_axes(self, axes): ...

class TransposedFont:
    font: _Font
    orientation: Transpose | None
    def __init__(self, font: _Font, orientation: Transpose | None = None) -> None: ...
    def getmask(self, text: str | bytes, mode: str = "", *args, **kwargs): ...
    def getbbox(self, text, *args, **kwargs): ...
    def getlength(self, text, *args, **kwargs): ...

def load(filename: FileDescriptorOrPath) -> ImageFont: ...
def truetype(
    font: str | bytes | SupportsRead[bytes] | None = None,
    size: int = 10,
    index: int = 0,
    encoding: str = "",
    layout_engine: Layout | None = None,
) -> FreeTypeFont: ...
def load_path(filename: str | bytes) -> ImageFont: ...
def load_default(size: int | None = None) -> ImageFont: ...
