Labelmaker is a simple web tool for generating text-based images, perfect for creating decals in Tabletop Simulator. Just append your desired text to labelmaker.xyz/
and Labelmaker will return an image, no design tools required! A few options are available via query string parameters: font, color, outline, and size. The homepage offers a form to make things a bit easier.
- 📦 Instant text-to-image conversion via URL
- 🎨 Customizable
color
,outline
,font
, andsize
via query string - 🧩 Designed for ease of use with Tabletop Simulator
- 🧭 Interactive homepage to preview available options
https://labelmaker.xyz/Hello World
(I'm actually cheating here and appended ?outline=white
so that the image is visible on dark backgrounds)
https://labelmaker.xyz/Hello?color=yellow
https://labelmaker.xyz/Hello?color=yellow&outline=black
https://labelmaker.xyz/Comic Sans?font=cs&size=96&color=orange&outline=blue
https://labelmaker.xyz/Multiple\nLines?font=Impact&color=orange
Use \n
to insert line breaks.
Visit the Labelmaker homepage to:
- Preview fonts and colors
- Test out combinations
- Copy generated URLs for use in Tabletop Simulator or elsewhere
Parameter | Description | Values |
---|---|---|
color |
Text color | black |
blue |
||
brown |
||
gray |
||
green |
||
orange |
||
pink |
||
purple |
||
red |
||
white |
||
yellow |
||
outline |
Outline color | none |
blue |
||
brown |
||
gray |
||
green |
||
orange |
||
pink |
||
purple |
||
red |
||
white |
||
yellow |
||
font |
Font name | Comic Sans (cs) |
Courier (cr) |
||
Georgia (g) |
||
Helvetica (h) |
||
Impact (i) |
||
Verdana (v) |
||
size |
Font size in pixels | 16 |
24 |
||
32 |
||
... |
||
120 |
||
128 |
This project is powered by Elixir + Phoenix, employs ImageMagick to create the images, and uses Docker for deployment.
mix setup
mix phx.server
Or use Docker:
docker build -t labelmaker .
docker run -p 4000:4000 labelmaker