<?php $img = @imagecreatetruecolor(44, 22); $white = imagecolorallocate($img, 255, 255, 255); $grey = imagecolorallocate($img, 128, 128, 128); $black = imagecolorallocate($img, 0, 0, 0); imagestring($img, 5, 6, 4, $text, $grey); imagestring($img, 5, 5, 3, $text, $white); imagejpeg($img); imagedestroy($img); ?>
Mam nadzieje ze zrozumieliscie, jesli nie to postaram sie wytlumaczyc bardziej.