Spaces:
Running
Running
Update steganography.py
Browse files- steganography.py +3 -4
steganography.py
CHANGED
@@ -30,10 +30,9 @@ def text_to_spectrogram_image(text, base_width=512, height=256, max_font_size=80
|
|
30 |
text_width = sum(draw.textbbox((0, 0), char, font=font)[2] - draw.textbbox((0, 0), char, font=font)[0] + letter_spacing for char in text) - letter_spacing
|
31 |
text_height = draw.textbbox((0, 0), text[0], font=font)[3] - draw.textbbox((0, 0), text[0], font=font)[1]
|
32 |
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
width = base_width
|
37 |
|
38 |
image = Image.new('L', (width, height), 'black')
|
39 |
draw = ImageDraw.Draw(image)
|
|
|
30 |
text_width = sum(draw.textbbox((0, 0), char, font=font)[2] - draw.textbbox((0, 0), char, font=font)[0] + letter_spacing for char in text) - letter_spacing
|
31 |
text_height = draw.textbbox((0, 0), text[0], font=font)[3] - draw.textbbox((0, 0), text[0], font=font)[1]
|
32 |
|
33 |
+
# Adjust width and height based on text size
|
34 |
+
width = max(base_width, text_width + margin * 2)
|
35 |
+
height = max(height, text_height + margin * 2)
|
|
|
36 |
|
37 |
image = Image.new('L', (width, height), 'black')
|
38 |
draw = ImageDraw.Draw(image)
|