EduardvonBriesen / mememuc

Launcher project for the MemeMuc bonus project of OMM WS22/23
1 stars 2 forks source link

6-meme-creation #41

Closed EduardvonBriesen closed 8 months ago

EduardvonBriesen commented 8 months ago

Memes können via API erstellt werden:

unter:

http://localhost:3001/create

payload:

{
    "template": "https://i.imgflip.com/261o3j.jpg",
    "memes": [
        {
            "title": "first",
            "texts": [
                {
                    "text": "hallo",
                    "size": 50,
                    "x": 50,
                    "y": 50,
                    "color": "black"
                },
                {
                    "text": "hallo",
                    "x": 150,
                    "y": 150,
                    "color": "red"
                }
            ]
        }, {
            "title": "second",
            "texts": [
                {
                    "text": "chiao",
                    "size": 50,
                    "x": 50,
                    "y": 50,
                    "color": "black"
                },
                {
                    "text": "hallo",
                    "x": 150,
                    "y": 150,
                    "color": "red"
                }
            ]
        }
    ]
}