GDLIB 2.0 Billedbehandling i PHP
DanDomains PHP servere understøtter GDLIB 2.0 billedbehandlingskomponent med følgende fil typer JPG, PNG, WBMP og GIF (kun læse).
Eksempel på brug af GDLIB:
<?
$gif = ImageCreateTrueColor(150,150);
$bg = ImageColorAllocate($gif,0,0,255);
$tx = ImageColorAllocate($gif,240,240,240);
ImageFilledRectangle($gif,0,0,200,200,$bg);
ImageString($gif,3,30,90,”Test af GDLIB”,$tx);header(“content-type: image/jpeg”);
ImageJPEG($gif);
?>
$gif = ImageCreateTrueColor(150,150);
$bg = ImageColorAllocate($gif,0,0,255);
$tx = ImageColorAllocate($gif,240,240,240);
ImageFilledRectangle($gif,0,0,200,200,$bg);
ImageString($gif,3,30,90,”Test af GDLIB”,$tx);header(“content-type: image/jpeg”);
ImageJPEG($gif);
?>