I must have messed up somehow since I tried the following code, however, the browser only showed me the message:
<?php
header("Content-type: image/png");
$text = "Working";
$image = imagecreatetruecolor(400,75);
$bg_color = imagecolorallocatealpha($image, 0, 0, 0, 127);
$fg_color =...