Skip to content

Instantly share code, notes, and snippets.

@v9n
Created September 3, 2010 09:07
Show Gist options
  • Save v9n/563642 to your computer and use it in GitHub Desktop.
Save v9n/563642 to your computer and use it in GitHub Desktop.
<?php
$textImages[$index] = imagecreatetruecolor($textBox['width'], $textBox['height']);
imagealphablending($textImages[$index], true);
imagesavealpha($textImages[$index], true);
$overlayColor = imagecolorallocatealpha($textImages[$index], 0, 0, 0, 127);
imagefill($textImages[$index], 0 , 0, $overlayColor);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment