<html>
<head>
<title>Dynamic Ribbon Creator</title>
</head>
<body>
<?php
$im = imagecreatetruecolor(55, 30);
$red = imagecolorallocate($im, 255, 0, 0);
$black = imagecolorallocate($im, 0, 0, 0);

// Make the background transparent
imagecolortransparent($im, $black);

// Draw a red rectangle
imagefilledrectangle($im, 4, 4, 50, 25, $red);

// Save the image
imagepng($im, 'ouput.png');
imagedestroy($im);
?>
<img src="output.png">
</body>
</html>