Untitled
public text v1 · immutable<?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);
?>