Source code for pyrit.prompt_converter.add_text_image_converter

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.

import base64
import hashlib
import logging
import string
import textwrap
from io import BytesIO
from typing import cast

from PIL import Image, ImageDraw, ImageFont
from PIL.ImageFont import FreeTypeFont

from pyrit.identifiers import ConverterIdentifier
from pyrit.models import PromptDataType, data_serializer_factory
from pyrit.prompt_converter.prompt_converter import ConverterResult, PromptConverter

logger = logging.getLogger(__name__)


[docs] class AddTextImageConverter(PromptConverter): """ Adds a string to an image and wraps the text into multiple lines if necessary. This class is similar to :class:`AddImageTextConverter` except we pass in text as an argument to the constructor as opposed to an image file path. """ SUPPORTED_INPUT_TYPES = ("image_path",) SUPPORTED_OUTPUT_TYPES = ("image_path",)
[docs] def __init__( self, text_to_add: str, font_name: str = "helvetica.ttf", color: tuple[int, int, int] = (0, 0, 0), font_size: int = 15, x_pos: int = 10, y_pos: int = 10, ): """ Initialize the converter with the text and text properties. Args: text_to_add (str): Text to add to an image. Defaults to empty string. font_name (str): Path of font to use. Must be a TrueType font (.ttf). Defaults to "helvetica.ttf". color (tuple): Color to print text in, using RGB values. Defaults to (0, 0, 0). font_size (float): Size of font to use. Defaults to 15. x_pos (int): X coordinate to place text in (0 is left most). Defaults to 10. y_pos (int): Y coordinate to place text in (0 is upper most). Defaults to 10. Raises: ValueError: If ``text_to_add`` is empty, or if ``font_name`` does not end with ".ttf". """ if text_to_add.strip() == "": raise ValueError("Please provide valid text_to_add value") if not font_name.endswith(".ttf"): raise ValueError("The specified font must be a TrueType font with a .ttf extension") self._text_to_add = text_to_add self._font_name = font_name self._font_size = font_size self._font = self._load_font() self._color = color self._x_pos = x_pos self._y_pos = y_pos
def _build_identifier(self) -> ConverterIdentifier: """ Build the converter identifier with text and image parameters. Returns: ConverterIdentifier: The identifier for this converter. """ text_hash = hashlib.sha256(self._text_to_add.encode("utf-8")).hexdigest()[:16] return self._create_identifier( converter_specific_params={ "text_to_add_hash": text_hash, "font_name": self._font_name, "color": self._color, "font_size": self._font_size, "x_pos": self._x_pos, "y_pos": self._y_pos, }, ) def _load_font(self) -> FreeTypeFont: """ Load the font for a given font name and font size. Returns: ImageFont.FreeTypeFont or ImageFont.ImageFont: The loaded font object. If the specified font cannot be loaded, the default font is returned. Raises: OSError: If the font resource cannot be loaded, a warning is logged and the default font is used instead. """ # Try to load the specified font try: font = ImageFont.truetype(self._font_name, self._font_size) except OSError: logger.warning(f"Cannot open font resource: {self._font_name}. Using default font.") font = cast(FreeTypeFont, ImageFont.load_default()) return font def _add_text_to_image(self, image: Image.Image) -> Image.Image: """ Add wrapped text to the image. Args: image (Image.Image): The image to which text will be added. Returns: Image.Image: The image with added text. """ draw = ImageDraw.Draw(image) # Calculate the maximum width in pixels with margin into account margin = 5 max_width_pixels = image.size[0] - margin # Estimate the maximum chars that can fit on a line alphabet_letters = string.ascii_letters # This gives 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' bbox = draw.textbbox((0, 0), alphabet_letters, font=self._font) avg_char_width = (bbox[2] - bbox[0]) / len(alphabet_letters) max_chars_per_line = int(max_width_pixels // avg_char_width) # Wrap the text wrapped_text = textwrap.fill(self._text_to_add, width=max_chars_per_line) # Add wrapped text to image y_offset = float(self._y_pos) for line in wrapped_text.split("\n"): draw.text((self._x_pos, y_offset), line, font=self._font, fill=self._color) bbox = draw.textbbox((self._x_pos, y_offset), line, font=self._font) line_height = bbox[3] - bbox[1] y_offset += line_height return image
[docs] async def convert_async(self, *, prompt: str, input_type: PromptDataType = "image_path") -> ConverterResult: """ Convert the given prompt (image) by adding text to it. Args: prompt (str): The image file path to which text will be added. input_type (PromptDataType): The type of input data. Returns: ConverterResult: The result containing path to the updated image. Raises: ValueError: If the input type is not supported. """ if not self.input_supported(input_type): raise ValueError("Input type not supported") img_serializer = data_serializer_factory(category="prompt-memory-entries", value=prompt, data_type="image_path") # Open the image original_img_bytes = await img_serializer.read_data() original_img = Image.open(BytesIO(original_img_bytes)) # Add text to the image updated_img = self._add_text_to_image(image=original_img) image_bytes = BytesIO() mime_type = img_serializer.get_mime_type(prompt) image_type = mime_type.split("/")[-1] updated_img.save(image_bytes, format=image_type) image_str = base64.b64encode(image_bytes.getvalue()).decode("utf-8") # Save image as generated UUID filename await img_serializer.save_b64_image(data=image_str) return ConverterResult(output_text=str(img_serializer.value), output_type="image_path")