Text to Image
Use scripts/render_text_image.py to generate an image and return a local file path. The script can also include a data: image URL when needed.
Prefer the script over hand-writing image payloads. The script already handles:
- fixed image width and height
- output format:
svg, png, jpg, jpeg
- temp file output by default under
tmp/
- absolute and relative file paths in the response
- file path, file name, and file size in the response
- whole-text color
- partial text colors through friendly highlight fields or raw segments
- explicit font size
- automatic font-size fitting when
font_size is omitted
- newline-aware wrapping
- transparent or solid backgrounds
- Windows and macOS font fallback
Input Shape
Pass a JSON spec through --spec-json or --spec-file.
Supported fields:
{
"text": "Hello\nWorld",
"highlight_ranges": [
{ "start": 0, "end": 5, "color": "#111111" },
{ "start": 6, "end": 11, "color": "#ff4d4f" }
],
"highlight_texts": [
{ "match": "World", "color": "#1677ff", "occurrence": "all", "case_sensitive": true }
],
"segments": [
{ "text": "Hello ", "color": "#111111" },
{ "text": "World", "color": "#ff4d4f" }
],
"width": 1200,
"height": 630,
"format": "png",
"font_size": 72,
"min_font_size": 12,
"default_color": "#111111",
"background": "#ffffff",
"padding": 48,
"line_height": 1.2,
"align": "center",
"valign": "middle",
"font_family": "Microsoft YaHei, PingFang SC, Arial, sans-serif"
}
Rules:
- Provide either
text or segments. If both are present, segments wins.
- Prefer
text + highlight_texts for simple "make this word red" requests.
- Use
highlight_ranges when the caller knows character positions.
- Use
segments only when the caller already has exact pieces split out.
- Keep
\n when a hard line break is required.
- Omit
font_size to make the script auto-fit the whole text inside the image.
- If
font_size is provided, the script keeps that size and still wraps lines as needed.
svg is the default format.
- Prefer
png over jpg for text-heavy images.
- If
format is jpg or jpeg, transparent background is converted to white.
Priority:
segments
text + highlight_ranges / highlight_texts
text only
Friendly highlight format:
{
"text": "ClawHub makes text visible",
"highlight_texts": [
{ "match": "ClawHub", "color": "#1677ff" },
{ "match": "visible", "color": "#fa541c" }
]
}
Range format:
{
"text": "Hello World",
"highlight_ranges": [
{ "start": 6, "end": 11, "color": "#ff4d4f" }
]
}
Recommended Workflow
- Build the JSON spec from the user's request.
- Run the script.
- Return
file_path to the caller when the next step is file upload.
- Use
image_url only when the caller explicitly needs a data URI.
Example:
@'
{
"segments": [
{ "text": "Claw", "color": "#111111" },
{ "text": "Hub", "color": "#1677ff" }
],
"width": 1024,
"height": 512,
"format": "png",
"background": "#ffffff",
"padding": 40
}
'@ | Set-Content spec.json
python scripts/render_text_image.py --spec-file spec.json --no-data-url
Output Contract
The script prints JSON:
{
"file_path": "E:\\clawhub\\text-to-image\\tmp\\rendered-0000.png",
"relative_file_path": "tmp/rendered-0000.png",
"file_name": "rendered-0000.png",
"file_size": 21550,
"mime_type": "image/png",
"format": "png",
"width": 1024,
"height": 512,
"font_size": 96.0,
"line_count": 1,
"resolved_segments": [
{ "text": "Claw", "color": "#111111" },
{ "text": "Hub", "color": "#1677ff" }
]
}
Notes
svg is lightweight, crisp, and ideal for text rendering.
png is the best general-purpose bitmap choice for text images.
jpg is supported for compatibility, but it is usually not the best default for text.
- Auto-fit uses width-aware wrapping and a font-size search; it is approximate but reliable for mixed Chinese and Latin text.
- The script writes files to the skill's own
tmp/ folder by default.
- Pass
--output path.ext to control where the file is written.
- Pass
--no-data-url when the caller only needs upload-ready file metadata.
- On macOS the script tries system fonts such as
PingFang and STHeiti before falling back.
- On Windows the script tries fonts such as
Microsoft YaHei, SimHei, and Arial.
- Reusable sample specs live in
testcases/, including 13-wrap-example.json for fixed-size wrapping.
1---2name: text-to-image-23description: Render text into an image and return a temporary local image file path, with optional data URI. Use when Clawhub or Codex needs to convert plain text, styled text, colored text, multilingual text, slogans, posters, captions, or text snippets into an image with controllable width, height, format, font size, full-text color, or partial text colors. Support svg, png, jpg, and jpeg output, return a real temp file path under the skill tmp folder, and work across Windows and macOS with built-in font fallback. Also use for 文本转图片、文字转图片、生成文字海报、彩色文字图片、指定尺寸文字图、局部文字颜色、高亮部分文字、输出临时图片地址、返回本地图片路径、返回 image 文件路径、指定 svg/png/jpg 格式、Mac 兼容、Windows 兼容、return temp file path, local image path, or data URI output.4---56# Text to Image78Use `scripts/render_text_image.py` to generate an image and return a local file path. The script can also include a `data:` image URL when needed.910Prefer the script over hand-writing image payloads. The script already handles:1112- fixed image width and height13- output format: `svg`, `png`, `jpg`, `jpeg`14- temp file output by default under `tmp/`15- absolute and relative file paths in the response16- file path, file name, and file size in the response17- whole-text color18- partial text colors through friendly highlight fields or raw segments19- explicit font size20- automatic font-size fitting when `font_size` is omitted21- newline-aware wrapping22- transparent or solid backgrounds23- Windows and macOS font fallback2425## Input Shape2627Pass a JSON spec through `--spec-json` or `--spec-file`.2829Supported fields:3031```json32{33 "text": "Hello\nWorld",34 "highlight_ranges": [35 { "start": 0, "end": 5, "color": "#111111" },36 { "start": 6, "end": 11, "color": "#ff4d4f" }37 ],38 "highlight_texts": [39 { "match": "World", "color": "#1677ff", "occurrence": "all", "case_sensitive": true }40 ],41 "segments": [42 { "text": "Hello ", "color": "#111111" },43 { "text": "World", "color": "#ff4d4f" }44 ],45 "width": 1200,46 "height": 630,47 "format": "png",48 "font_size": 72,49 "min_font_size": 12,50 "default_color": "#111111",51 "background": "#ffffff",52 "padding": 48,53 "line_height": 1.2,54 "align": "center",55 "valign": "middle",56 "font_family": "Microsoft YaHei, PingFang SC, Arial, sans-serif"57}58```5960Rules:6162- Provide either `text` or `segments`. If both are present, `segments` wins.63- Prefer `text` + `highlight_texts` for simple "make this word red" requests.64- Use `highlight_ranges` when the caller knows character positions.65- Use `segments` only when the caller already has exact pieces split out.66- Keep `\n` when a hard line break is required.67- Omit `font_size` to make the script auto-fit the whole text inside the image.68- If `font_size` is provided, the script keeps that size and still wraps lines as needed.69- `svg` is the default format.70- Prefer `png` over `jpg` for text-heavy images.71- If `format` is `jpg` or `jpeg`, transparent background is converted to white.7273Priority:74751. `segments`762. `text` + `highlight_ranges` / `highlight_texts`773. `text` only7879Friendly highlight format:8081```json82{83 "text": "ClawHub makes text visible",84 "highlight_texts": [85 { "match": "ClawHub", "color": "#1677ff" },86 { "match": "visible", "color": "#fa541c" }87 ]88}89```9091Range format:9293```json94{95 "text": "Hello World",96 "highlight_ranges": [97 { "start": 6, "end": 11, "color": "#ff4d4f" }98 ]99}100```101102## Recommended Workflow1031041. Build the JSON spec from the user's request.1052. Run the script.1063. Return `file_path` to the caller when the next step is file upload.1074. Use `image_url` only when the caller explicitly needs a data URI.108109Example:110111```powershell112@'113{114 "segments": [115 { "text": "Claw", "color": "#111111" },116 { "text": "Hub", "color": "#1677ff" }117 ],118 "width": 1024,119 "height": 512,120 "format": "png",121 "background": "#ffffff",122 "padding": 40123}124'@ | Set-Content spec.json125126python scripts/render_text_image.py --spec-file spec.json --no-data-url127```128129## Output Contract130131The script prints JSON:132133```json134{135 "file_path": "E:\\clawhub\\text-to-image\\tmp\\rendered-0000.png",136 "relative_file_path": "tmp/rendered-0000.png",137 "file_name": "rendered-0000.png",138 "file_size": 21550,139 "mime_type": "image/png",140 "format": "png",141 "width": 1024,142 "height": 512,143 "font_size": 96.0,144 "line_count": 1,145 "resolved_segments": [146 { "text": "Claw", "color": "#111111" },147 { "text": "Hub", "color": "#1677ff" }148 ]149}150```151152## Notes153154- `svg` is lightweight, crisp, and ideal for text rendering.155- `png` is the best general-purpose bitmap choice for text images.156- `jpg` is supported for compatibility, but it is usually not the best default for text.157- Auto-fit uses width-aware wrapping and a font-size search; it is approximate but reliable for mixed Chinese and Latin text.158- The script writes files to the skill's own `tmp/` folder by default.159- Pass `--output path.ext` to control where the file is written.160- Pass `--no-data-url` when the caller only needs upload-ready file metadata.161- On macOS the script tries system fonts such as `PingFang` and `STHeiti` before falling back.162- On Windows the script tries fonts such as `Microsoft YaHei`, `SimHei`, and `Arial`.163- Reusable sample specs live in `testcases/`, including `13-wrap-example.json` for fixed-size wrapping.