python-FloatImg/floatimg/__init__.py

17 lines
284 B
Python
Raw Normal View History

"""Python Binding to FloatImg """
2021-05-14 06:40:38 +02:00
# FloatImg class, constants & static functions
from floatimg.image import (
GRAY,
RGB,
FloatImg,
create,
create_rgb,
create_from_dump,
2021-05-14 09:11:35 +02:00
create_from_png,
2021-05-14 06:40:38 +02:00
fileinfos,
2021-05-20 08:34:10 +02:00
Contrast
2021-05-14 06:40:38 +02:00
)
2021-05-14 06:40:38 +02:00
__version__ = "0.0.1"