<?php
$yazi = "BURAYA YAZI GELECEK";

$resim = imagecreate( 800, 600 );   // RESİM BOYUTU                        
$arkaplan  = imagecolorallocate( $resim, 0,   0,   255 );
$yazirengi = imagecolorallocate( $resim, 255, 255, 0 );
imagestring( $resim, 4, 30, 25, $yazi, $yazirengi );
imagesetthickness ( $resim, 5 );

header( "Content-type: image/png" );
imagepng( $resim );
imagecolordeallocate( $yazirengi );
imagecolordeallocate( $arkaplan );
imagedestroy( $resim );
?>
ÖRNEK KODLAR
https://www.legendblogs.com/blog/convert-text-to-image-in-php/121766

https://www.codexworld.com/convert-text-to-image-php/​​​