consegui hacer eso en PHP
aqui dejo el codigo por si alguien se sirve
Código PHP:
<?php
header("Content-type: image/gif");
//imagecreatefromgif -- Crear una nova imatge a partir de un arxiu o URL
//http://es.php.net/manual/es/function.imagecreatefromgif.php
$img1 = imagecreatefromgif("home.gif");
//Tipus de Letra
$fuente = "daniela.ttf";
//imagecolorallocate -- Reserva un color per una imatge
//http://es.php.net/manual/es/function.imagecolorallocate.php
$color = imagecolorallocate($img1,255,255,255);
//Texte q convertirem amb Imatge
$paraula = "Manteniment fresc";
//imagettftext -- Escriu un texte sobre la imatge utilitzan les fonts TrueType
//http://es.php.net/manual/es/function.imagettftext.php
imagettftext($img1,13,90,15,80,$color,$fuente, $paraula);
//imagegif -- Produir la sortida d'una imatge al navegador o a un arxiu
//http://es.php.net/manual/es/function.imagegif.php
imagegif($img1);
//imagedestroy -- Destrueix una imatge
//http://es.php.net/manual/es/function.imagedestroy.php
imagedestroy($img1);
?>