2021-05-12 17:28:06 +11:00
|
|
|
"""Python Binding to FloatImg """
|
2021-05-11 22:53:41 +11:00
|
|
|
|
2021-05-14 15:40:38 +11:00
|
|
|
# FloatImg class, constants & static functions
|
|
|
|
from floatimg.image import (
|
|
|
|
GRAY,
|
|
|
|
RGB,
|
|
|
|
FloatImg,
|
|
|
|
create,
|
|
|
|
create_rgb,
|
|
|
|
create_from_dump,
|
2021-05-14 18:11:35 +11:00
|
|
|
create_from_png,
|
2021-05-14 15:40:38 +11:00
|
|
|
fileinfos,
|
|
|
|
)
|
2021-05-11 22:53:41 +11:00
|
|
|
|
2021-05-14 15:40:38 +11:00
|
|
|
__version__ = "0.0.1"
|