1
0
mirror of synced 2024-11-14 18:07:36 +01:00
bemaniutils/bemani/format/afp/blendalt.pyi
2021-05-23 20:37:18 +00:00

17 lines
375 B
Python

from PIL import Image # type: ignore
from typing import Optional, Tuple
from .types.generic import Color, Matrix, Point
def affine_composite(
img: Image.Image,
add_color: Color,
mult_color: Color,
transform: Matrix,
mask: Optional[Image.Image],
blendfunc: int,
texture: Image.Image,
single_threaded: bool = False,
) -> Image.Image:
...