PHP ver gevorderde |
|
je moet de output bufferen:
<?
$im = imagecreate(110, 20);
$background_color = imagecolorallocate($im, 0, 0, 0);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, "A Simple Text String", $text_color);
ob_start();
imagepng($im);
$img = ob_get_contents();
imagedestroy($im);
<? $im = imagecreate(110, 20); $background_color = imagecolorallocate($im, 0, 0, 0); $text_color = imagecolorallocate($im, 233, 14, 91); imagestring($im, 1, 5, 5, "A Simple Text String", $text_color); imagepng($im); imagedestroy($im);
Nu bevat $img de gegevens die je dan met een imagecreatefromstring() weer met de gd-libary kan editen. |