Solucion....
1era pagina donde hay la taula con las cabeceras en vertical
Código HTML:
<td title="TUTITULO"><img src="paginatitulos.php?var=Total Horas"/></td>
2unda pagina donde hay el codigo para crear el titulo en vertical - paginastitulos.php
Código PHP:
<?php
header("Content-type: image/gif");
//Texto q convertiremos en imagen
$var = $_GET['var'];
//http://es.php.net/manual/es/function.imagecreatefromgif.php
$img1 = imagecreatefromgif("home.gif");
//Tipus de Lletra
$fuente = "comic.ttf";
//http://es.php.net/manual/es/function.imagecolorallocate.php
$color = imagecolorallocate($img1,255,255,255);
//http://es.php.net/manual/es/function.imagettftext.php
imagettftext($img1,11,90,15,85,$color,$fuente, $paraula);
//http://es.php.net/manual/es/function.imagegif.php
imagegif($img1);
//http://es.php.net/manual/es/function.imagedestroy.php
imagedestroy($img1);
donde home.gif es un pequeño recuadro transparante hecho en photoshop donde insertamos el grafico.
Suerte y Saludos