Commit 306e2ff6 authored by DepFA's avatar DepFA Committed by AUTOMATIC1111
Browse files

Update image_embedding.py

parent d0ea471b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -134,7 +134,7 @@ def caption_image_overlay(srcimage, title, footerLeft, footerMid, footerRight, t
    from math import cos

    image = srcimage.copy()

    fontsize = 32
    if textfont is None:
        try:
            textfont = ImageFont.truetype(opts.font or Roboto, fontsize)
@@ -151,7 +151,7 @@ def caption_image_overlay(srcimage, title, footerLeft, footerMid, footerRight, t
    image = Image.alpha_composite(image.convert('RGBA'), gradient.resize(image.size))

    draw = ImageDraw.Draw(image)
    fontsize = 32

    font = ImageFont.truetype(textfont, fontsize)
    padding = 10