| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2001-12-05 06:42 UTC] derick@php.net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 07:00:01 2025 UTC | 
PHP 4.06 with Freetype 2 and GD 2 does not anti-alias. In the documentation it says that anti-aliasing can only be disabled by using a negative color (-$black). On my system PHP does not anti-alias; no matter if I am using positiv or negative values. That's the code: $im = ImageCreateFromJpeg ("$motiv"); $white = imagecolorclosest ($im, 255, 255, 255); $black = imagecolorclosest ($im, 0, 0, 0); ... $data = imagettftext($im, $karten_fontsize, 0, $newx, $xstart, $black, $karten_font, $mytext[$o]); It works but it just doesn't anti-alias. Hans