ASCII Text > jpg
Jeg er nået så lang :<?php
header("Content-type: image/png");
$fcontents = file('test.txt');
$height = sizeof($fcontents) * 10;
$width = 800;
$im = imagecreate($width, $height);
$back_color = imagecolorallocate($im, 255, 255, 255);
$text_color = ImageColorAllocate($im, 0,0,0);
while(list($line_num, $line) = each($fcontents)) {
ImageTTFText($im, 10, 0, 0, $line_num * 10, $text_color, "fonts/lucon.ttf", $line);
}
imagepng($im);
imagedestroy($im);
?>
Men billedet der bliver genereret er grimt...Hvad gør jeg ?