2021-05-19 18:25:13 +02:00
|
|
|
from PIL import Image # type: ignore
|
|
|
|
from typing import Tuple
|
|
|
|
|
|
|
|
from .types.generic import Color, Matrix, Point
|
|
|
|
|
|
|
|
def affine_composite(
|
|
|
|
img: Image.Image,
|
2021-05-22 03:31:42 +02:00
|
|
|
add_color: Color,
|
2021-05-19 18:25:13 +02:00
|
|
|
mult_color: Color,
|
|
|
|
transform: Matrix,
|
|
|
|
blendfunc: int,
|
|
|
|
texture: Image.Image,
|
|
|
|
single_threaded: bool = False,
|
|
|
|
) -> Image.Image:
|
|
|
|
...
|