Spaces:
Sleeping
Sleeping
File size: 451 Bytes
2cf467c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | """
Infographics Generator package
"""
from modules.infographics_generator.infographics_generator import process
from modules.infographics_generator.color_utils import get_contrast_color
from .infographics_generator import process
from .color_utils import get_contrast_color
from .mask_utils import calculate_mask, calculate_content_height
__all__ = [
'process',
'get_contrast_color',
'calculate_mask',
'calculate_content_height',
]
|