GD library getur gert þetta fyrir þig. Þú þarft hinsvegar að installa því.
<?php
$text = $_SERVER['REMOTE_ADDR'];
$width = ( strlen( $text ) * 10 ) - 3;
$height = 25;
$image = imagecreate( $width, $height );
$background = imagecolorallocate( $image, 0, 0, 0 );
$foreground = imagecolorallocate( $image, 255, 255, 255 );
imagestring( $image, 5, 5, 5, $text, $foreground );
header( ‘Content-Type: image/jpeg’ );
imagejpeg( $image );
imagedestroy( $image );
?>
Gaui