Welcome Image Generator

What is the Welcome Image Generator?

The Welcome Image Generator automatically generates a welcome image for people that just joined a guild. The best part about it is that you can put all values inside a single link, and the server will generate the image with your given information

How do you use it?

As already mentioned, all values are given through a GET-Request, or in short, everything is already in the URL. The reason I made it a GET-Request is that POST-Requests require lots of additional code with a GET-Request, you just add the variables into a string, the URL.


All you have to do is to enter the needed values into the URL. An example would be:
https://api.discorddevtools.xyz/welcome-image-generator/generate.png?title=Example+Title&username=Wumpus&discriminator=1234.

The server then gets your given information (in this case is: title = "Example Title", username = "Wumpus", discriminator = "1234")


Knowing that, if you need an example image, go to https://api.discorddevtools.xyz/welcome-image-generator/generate.png and watch the magic happen yourself!


Of course there are a lot more options you can enter wayy more options than that. For a full list of options, please scroll down.

To understand how GET-Request URLs work and how you can add special characters or spaces to one, please click on the hyperlinks on this text.

Which parameters exist?

A full list of parameters, their expected values and default values can be found here:


Important!

Direct image URLs must always end with a valid image datatype. Examples are: .png .jpg .gif. If the URL does not end with a valid image datatype ending, the code will automatically switch to the default image. This will be changed in the near future though.


Another important note is that you shouldn't add hashtags infront of your hex codes! Since GET-Request use special encoding for special symbols, including hashtags, the hashtag wouldn't get passed to the server if not done correctly. That's why you should leave it out in general!