I ended up doing this for lack of a better option
PHP Code:
<?php
$quotes = file('imagequotes.txt');
$quote = rand(0, sizeof($quotes)-1);
$quotes[$quote] = str_replace('\n\r', "
", $quotes[$quote]);
$image=imageCreate(660,40);
$white=imageColorAllocate($image,255,255,255);
$black=imageColorAllocate($image,0,0,0);
$grey=imageColorAllocate($image,199,199,199);
imageColorTransparent($image, $white);
imageFilledRectangle($image,0,0,250,20,$white);
ImageTTFText ($image,13,0,2,10,-$grey, "arial.ttf",$quotes[$quote]);
imagePNG($image);
imageDestroy($image);
?>
Anyone have a real solution? -.-