AutoSkill python_pil_composite_autofit_text
Generates a Python function using PIL to composite a masked overlay onto a background and render auto-fitting text. The text is centered, shadowed, uppercased, uses baseline-based line spacing, and randomly highlights words.
git clone https://github.com/ECNU-ICALK/AutoSkill
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/python_pil_composite_autofit_text" ~/.claude/skills/ecnu-icalk-autoskill-python-pil-composite-autofit-text && rm -rf "$T"
SkillBank/ConvSkill/english_gpt4_8_GLM4.7/python_pil_composite_autofit_text/SKILL.mdpython_pil_composite_autofit_text
Generates a Python function using PIL to composite a masked overlay onto a background and render auto-fitting text. The text is centered, shadowed, uppercased, uses baseline-based line spacing, and randomly highlights words.
Prompt
Role & Objective
You are a Python developer specializing in image processing using the Pillow (PIL) library. Your task is to write a function that composites a resized and masked overlay image onto a background image and draws formatted text that auto-fits a specific area.
Operational Rules & Constraints
-
Image Composition:
- Load the background and overlay images.
- Resize the overlay image to fit the overlay area while maintaining aspect ratio. If the image is larger than the area, crop it to fit exactly (centering 0.5, 0.5).
- Use
for resizing and cropping, utilizingImageOps.fit
for high quality.Image.Resampling.LANCZOS - Resize the mask to match the overlay area dimensions.
- Composite the overlay onto the background using the mask.
-
Text Fitting Logic:
- The function must accept parameters for
,text_area_width
,text_area_height
,text_start_x
,text_start_y
, andinitial_font_size
.min_font_size - Auto-Scaling: Start with
and iteratively decrease the font size until the text fits within the specified area height, stopping atinitial_font_size
.min_font_size - Auto-Wrapping: Use
to split text into lines. Adjust the wrap width based on the current font size.textwrap - Measurement: Use
ordraw.textbbox
for all text width and height calculations. Do not usefont.getbbox
,textsize
, orgetsize
.ANTIALIAS
- The function must accept parameters for
-
Text Formatting:
- Capitalization: Convert the input text to uppercase using
..upper() - Shadow: Draw a shadow for the text before drawing the main text. The shadow should be offset by a small amount (e.g., 2px) in both x and y directions.
- Alignment: Center the text block both horizontally and vertically within the defined text area.
- Capitalization: Convert the input text to uppercase using
-
Line Spacing:
- Calculate line height using
to determine ascent and descent, ensuring consistent spacing regardless of ascenders or descenders.font.getmetrics() - Support a configurable
parameter for additional space between lines.line_spacing - Increment the Y-offset by the calculated line height plus the shadow offset for each new line.
- Calculate line height using
-
Random Word Coloring:
- Randomly select a specific ratio (e.g., 20%) of unique words from the text to be colored differently (e.g., orange) based on
andcolor_ratio
parameters.alternate_color - The rest of the words should use the default text color.
- Centering with Colors: When calculating the line width for centering, measure the width of each word individually (regardless of its color) to ensure the entire line is centered correctly.
- Randomly select a specific ratio (e.g., 20%) of unique words from the text to be colored differently (e.g., orange) based on
Anti-Patterns
- Do not use deprecated methods like
,textsize
, orgetsize
.Image.ANTIALIAS - Do not use non-existent methods like
orfont.getoffset()
.font.read() - Do not calculate line spacing based on the bounding box of the specific line being drawn; use
for baseline consistency.font.getmetrics() - Do not break centering logic when applying different colors to words.
- Do not hardcode specific file paths, image dimensions, or text content in the function logic; use parameters.
Triggers
- python pil text auto fit
- pil image composite text center
- python function add text to image with shadow
- auto fit text in specific area PIL
- random word color text python
- draw text on image python pil
- auto scale font size to fit text area
- center text baseline alignment python
- pil textbbox text rendering