File: __init__.py

package info (click to toggle)
python-django-imagekit 5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 692 kB
  • sloc: python: 1,975; makefile: 133; sh: 6
file content (12 lines) | stat: -rw-r--r-- 338 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
from pilkit.processors import *

__all__ = [
    # Base
    'ProcessorPipeline', 'Adjust', 'Reflection', 'Transpose',
    'Anchor', 'MakeOpaque',
    # Crop
    'TrimBorderColor', 'Crop', 'SmartCrop',
    # Resize
    'Resize', 'ResizeToCover', 'ResizeToFill', 'SmartResize',
    'ResizeCanvas', 'AddBorder', 'ResizeToFit', 'Thumbnail'
]