from typing import Any from typing_extensions import Literal from .Image import Image QImage = Any # imported from either of {PyQt6,PySide6,PyQt5,PySide2}.QtGui QPixmap = Any qt_versions: Any qt_is_installed: bool qt_version: Any def rgb(r: int, g: int, b: int, a: int = ...) -> int: ... def fromqimage(im: Image | QImage) -> Image: ... def fromqpixmap(im: Image | QImage) -> Image: ... def align8to32(bytes: bytes, width: int, mode: Literal["1", "L", "P"]) -> bytes: ... class ImageQt(QImage): # type: ignore def __init__(self, im: Image) -> None: ... def toqimage(im: Image) -> ImageQt: ... def toqpixmap(im: Image) -> QPixmap: ...