← 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
- image
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, styled to match the reference images. |
| fill_color | string | Fill color for the generated glyphs. Accepts any valid SVG/CSS color value. |
| max_tokens | integer | Maximum tokens to generate. |
| output_size | integer | Maximum dimension (width or height) of the output SVG in pixels. The aspect ratio is preserved. |
| temperature | number | Sampling temperature. |
| 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. |
| repetition_penalty | number | Repetition penalty. |
| reference_image_urlsrequired | array | URLs of reference glyph images whose style should be matched. Provide 1 to 8 images of individual glyph characters. |
| 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. |