Mercurial > code > home > repos > light9
view stubs/PIL/ImageOps.pyi @ 2140:47cf5a26adf0
stray hardcoded show uri
author | drewp@bigasterisk.com |
---|---|
date | Wed, 17 May 2023 17:29:05 -0700 |
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): ...