Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(14) | Call(0) | Derive(6) | Import(8)
Base class for all NativeImaging backends Should be compatible with PIL.Image or raise NotImplementedError()
src/n/a/NativeImaging-0.0.7/NativeImaging/backends/java.py NativeImaging(Download)
from javax.media.jai.operator import TransposeDescriptor from NativeImaging.api import Image class JavaImage(Image):
src/n/a/NativeImaging-0.0.7/NativeImaging/backends/GraphicsMagick.py NativeImaging(Download)
from copy import deepcopy from NativeImaging.api import Image try:
class GraphicsMagickImage(Image): _wand = None NONE = NEAREST = 0 ANTIALIAS = wand.FilterTypes['LanczosFilter']
src/n/a/NativeImaging-HEAD/NativeImaging/backends/java.py NativeImaging(Download)
from javax.media.jai.operator import TransposeDescriptor from NativeImaging.api import Image class JavaImage(Image):
src/n/a/NativeImaging-HEAD/NativeImaging/backends/GraphicsMagick.py NativeImaging(Download)
from copy import deepcopy from NativeImaging.api import Image try:
class GraphicsMagickImage(Image): _wand = None NONE = NEAREST = 0 ANTIALIAS = wand.FilterTypes['LanczosFilter']
src/n/a/NativeImaging-0.0.7/NativeImaging/backends/aware.py NativeImaging(Download)
from PIL import Image as PILImage from NativeImaging.api import Image
class AwareImage(Image): NONE = NEAREST = 0 ANTIALIAS = 1
src/n/a/NativeImaging-HEAD/NativeImaging/backends/aware.py NativeImaging(Download)
from PIL import Image as PILImage from NativeImaging.api import Image
class AwareImage(Image): NONE = NEAREST = 0 ANTIALIAS = 1
src/n/a/NativeImaging-0.0.7/NativeImaging/backends/aware_cext.py NativeImaging(Download)
from PIL import Image as PILImage from NativeImaging.api import Image import _aware
src/n/a/NativeImaging-HEAD/NativeImaging/backends/aware_cext.py NativeImaging(Download)
from PIL import Image as PILImage from NativeImaging.api import Image import _aware