This repository has been archived on 2026-06-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sgd/ysqld/ysql12d/bildgenerieren3.php
T

8 lines
252 B
PHP

<?php
$image = imagecreate(350, 150);
$bgc = imagecolorallocate($image, 230, 230, 230);
$fc =imagecolorallocate($image, 255, 0, 0);
imagettftext($image, 120, 0,10, 140, $fc,"fonts/tahoma.ttf", "PHP" );
imagejpeg($image);
imagedestroy($image);
?>