2023-03-03 01:02:00 -05:00
|
|
|
"""
|
2023-03-02 13:28:17 -05:00
|
|
|
Initialization file for invokeai.backend.image_util methods.
|
2023-03-03 01:02:00 -05:00
|
|
|
"""
|
2023-08-17 18:45:25 -04:00
|
|
|
from .patchmatch import PatchMatch # noqa: F401
|
|
|
|
from .pngwriter import PngWriter, PromptFormatter, retrieve_metadata, write_metadata # noqa: F401
|
|
|
|
from .seamless import configure_model_padding # noqa: F401
|
|
|
|
from .txt2mask import Txt2Mask # noqa: F401
|
|
|
|
from .util import InitImageResizer, make_grid # noqa: F401
|
2023-03-03 01:02:00 -05:00
|
|
|
|
2023-03-02 13:28:17 -05:00
|
|
|
|
|
|
|
def debug_image(debug_image, debug_text, debug_show=True, debug_result=False, debug_status=False):
|
2023-08-17 18:45:25 -04:00
|
|
|
from PIL import ImageDraw
|
|
|
|
|
2023-03-02 13:28:17 -05:00
|
|
|
if not debug_status:
|
|
|
|
return
|
|
|
|
|
|
|
|
image_copy = debug_image.copy().convert("RGBA")
|
|
|
|
ImageDraw.Draw(image_copy).text((5, 5), debug_text, (255, 0, 0))
|
|
|
|
|
|
|
|
if debug_show:
|
|
|
|
image_copy.show()
|
|
|
|
|
|
|
|
if debug_result:
|
|
|
|
return image_copy
|