Cytat(FiDO @ 2006-05-01 02:27:10)
Niestety bez zmian, jednak dzięki temu znalazłem rozwiązanie tego problemu, a mianowicie, aby czcionka była bez antialisingu należy:
Cytat
The color index. Using the negative of a color index has the effect of turning off antialiasing.
Jednak nie można używać
ImageCreateTrueColor" title="Zobacz w manualu php" target="_manual ponieważ nie zadziała wyłączenie.
<?php
header ("Content-type: image/png"); // $im = ImageCreateTrueColor( 500, 64 ); źle!
$im = ImageCreate( 500, 64 );
$white = ImageColorAllocate( $im, 255, 255, 255 );
$trans = ImageColorTransparent( $im, $white );
ImageFill( $im, 0, 0, $white) ;
$black = ImageColorAllocate( $im, 0, 0, 0 );
ImageTtfText( $im, 10, 0, 12, 21, -$black, 'Verdana.ttf', "Simple" ); // minus przy kolorze
ImagePng( $im) ;
ImageDestroy( $im );
?>
A jeżeli chodzi o główny wątek, to zobacz mój kod powyżej czy wczyta Ci czcionkę

Pozdrawiam!