Initial commit
This commit is contained in:
29
env/lib/python3.10/site-packages/pillow_heif/__init__.py
vendored
Normal file
29
env/lib/python3.10/site-packages/pillow_heif/__init__.py
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
"""Provide all possible stuff that can be used."""
|
||||
|
||||
from . import options
|
||||
from ._lib_info import libheif_info, libheif_version
|
||||
from ._version import __version__
|
||||
from .as_plugin import (
|
||||
AvifImageFile,
|
||||
HeifImageFile,
|
||||
register_avif_opener,
|
||||
register_heif_opener,
|
||||
)
|
||||
from .constants import (
|
||||
HeifColorPrimaries,
|
||||
HeifDepthRepresentationType,
|
||||
HeifMatrixCoefficients,
|
||||
HeifTransferCharacteristics,
|
||||
)
|
||||
from .heif import (
|
||||
HeifDepthImage,
|
||||
HeifFile,
|
||||
HeifImage,
|
||||
encode,
|
||||
from_bytes,
|
||||
from_pillow,
|
||||
is_supported,
|
||||
open_heif,
|
||||
read_heif,
|
||||
)
|
||||
from .misc import get_file_mimetype, load_libheif_plugin, set_orientation
|
||||
Reference in New Issue
Block a user