Mercurial > code > home > repos > light9
view stubs/PIL/ImageOps.pyi @ 1961:f77dfa8e82b9
new 'image' effect for animating light colors
Ignore-this: 8df08111173bd96ff8d8093d4243c3ba
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Thu, 06 Jun 2019 11:59:44 +0000 |
parents | 3b2255e3576d |
children |
line wrap: on
line source
# Stubs for PIL.ImageOps (Python 3) # # NOTE: This dynamically typed stub was automatically generated by stubgen. from typing import Any, Optional def autocontrast(image: Any, cutoff: int = ..., ignore: Optional[Any] = ...): ... def colorize(image: Any, black: Any, white: Any): ... def crop(image: Any, border: int = ...): ... def scale(image: Any, factor: Any, resample: Any = ...): ... def deform(image: Any, deformer: Any, resample: Any = ...): ... def equalize(image: Any, mask: Optional[Any] = ...): ... def expand(image: Any, border: int = ..., fill: int = ...): ... def fit(image: Any, size: Any, method: Any = ..., bleed: float = ..., centering: Any = ...): ... def flip(image: Any): ... def grayscale(image: Any): ... def invert(image: Any): ... def mirror(image: Any): ... def posterize(image: Any, bits: Any): ... def solarize(image: Any, threshold: int = ...): ... def gaussian_blur(im: Any, radius: Optional[Any] = ...): ... gblur = gaussian_blur def unsharp_mask(im: Any, radius: Optional[Any] = ..., percent: Optional[Any] = ..., threshold: Optional[Any] = ...): ... usm = unsharp_mask def box_blur(image: Any, radius: Any): ...