All pastes #659424 Raw Edit

Untitled

public text v1 · immutable
#659424 ·published 2007-08-16 08:18 UTC
rendered paste body
<?php

$im = imagecreatetruecolor(210, 140);

$orange = imagecolorallocate($im, 255, 102, 0);
$yellow = imagecolorallocate($im, 153, 255, 0);

$text1 = 'ABCDE';
$text4 = 'FGHIJ';

$font = './arialbd.ttf';

imagettftext($im, 11, 0, 12, 25, $orange, $font, $text);
imagettftext($im, 11, 0, 12, 85, $yellow, $font, $text4);

imagepng($im,'/home/www/test.png',0);
imagedestroy($im);

?>