<?php
header("Content-type: image/jpeg");
$im = imagecreate(400,30);
$white = imagecolorallocate($im, 255,255,255);
$black = imagecolorallocate($im, 0,0,0);
// Remplacez path par votre chemin d'accès aux polices
imagettftext($im, 20, 0, 10, 20, $white, "/path/arial.ttf",
"Test en cours... Omega: Ω");
imagejpeg($im);
imagedestroy($im);
?>
|