<?php
$im
= imagecreatetruecolor(800, 250);
imagefilledrectangle(
$im
, 0, 0, 800, 299,
imagecolorallocate(
$im
, 255, 0, 100));
$bbox
= imagettfbbox(10, 0,
'./Pacifico.ttf'
,
'GeeksforGeeks'
);
$x
=
$bbox
[0] + 130;
$y
=
$bbox
[1] + 130;
imagettftext(
$im
, 50, 0,
$x
,
$y
,
imagecolorallocate(
$im
, 0, 150, 0),
'./Pacifico.ttf'
,
'GeeksforGeeks'
);
header(
'Content-Type: image/png'
);
imagepng(
$im
);
imagedestroy(
$im
);
?>