← All models
Vector font generation with VecGlypher. Create custom glyphs from text descriptions or reference images—outputs clean SVG paths directly without raster-to-vector conversion.
images
Details
- Accepts
- text
Pricing
- Price
- 0.625 cr / image
Prices in credits (1 credit = $0.01).
Data schema
Input
| Field | Type | Description |
|---|---|---|
| seed | — | Random seed for reproducibility. |
| top_k | integer | Top-k sampling parameter. |
| top_p | number | Top-p (nucleus) sampling parameter. |
| promptrequired | string | The target text to generate as vector glyphs. Each character is rendered as a separate SVG path element. |
| fill_color | string | Fill color for the generated glyphs. Accepts any valid SVG/CSS color value. |
| max_tokens | integer | Maximum tokens to generate. Increase for longer text. |
| output_size | integer | Maximum dimension (width or height) of the output SVG in pixels. The aspect ratio is preserved. |
| temperature | number | Sampling temperature. Lower values produce more deterministic output. |
| stroke_color | — | Optional stroke (outline) color for the generated glyphs. When set, adds an outline around each glyph path. |
| stroke_width | number | Stroke width in SVG units. Only applies when stroke_color is set. |
| style_description | string | Font style description using typography terms such as weight (100-900), style (italic, oblique), category (serif, sans-serif, display, handwriting, monospace), and characteristics (geometric, humanist, condensed, rounded). |
| repetition_penalty | number | Repetition penalty to reduce repeated SVG path segments. |
| enable_safety_checker | boolean | Enable input safety checking. |
Output
| Field | Type | Description |
|---|---|---|
| seed | integer | The seed used for generation. |
| image | — | The generated SVG file containing vector glyphs. |
| timings | object | Timing breakdown of the generation process. |
| svg_content | string | Raw SVG content as a string. |