Skip to content

Instantly share code, notes, and snippets.

View wilianuhlmann's full-sized avatar
🎯
Focusing

Wilian Uhlmann wilianuhlmann

🎯
Focusing
View GitHub Profile
<?php
// Set the content-type
header('Content-Type: image/png');
// Create the image
$im = imagecreatetruecolor(400, 30);
// Create some colors
$white = imagecolorallocate($im, 255, 255, 255);