Skip to main content
Sign in
Snippets Groups Projects
Select Git revision
  • 2a27e47b14f7fc5f6711a484c5af02f21af72c96
  • master default protected
2 results

text2img

Jonas Leder's avatar
Jonas Leder authored
2a27e47b
History

Text 2 Image

This is a simple API endpoint for generating Images from the provided text. It's special optimized to work with OpenEPaperLink.

Example POST Body

{
    "text": [
        {
            "text": "Hello World",
            "color": 1 // 0 = white, 1 = black, 2 = red
        },
        {
            "text": "Hello World",
            "color": 2 // 0 = white, 1 = black, 2 = red
        }
    ],
    "fontSize": 12,
    "width": 296,
    "height": 128
}