ImageTTFText - undefined function

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • ImageTTFText - undefined function

    Hallo,
    ich habe in meinem PHP-Script u.a. die Funktionen:

    PHP-Code:
    $image imagecreatetruecolor(155,40);

    [...]

    imagettftext($image$size05,   25+rand(0,10), $color$FONTS.'/'.rand(1,7).'.ttf',$A); 
    Während mein PHP ohne Probleme das Image anlegen kann, kennt er aber die Funktion imagettftext nicht.

    Code:
    Fatal error: Call to undefined function: imagettftext() in /srv/www/htdocs/captha/index.php on line 27
    Laut phpinfo habe ich:

    GD Support enabled
    GD Version bundled (2.0.23 compatible)
    Freetype 2

    An was könnte das Problem noch liegen? Danke!

  • #2
    zeig mal
    PHP-Code:
    var_dump(gd_info()); 

    Kommentar


    • #3
      Code:
      array(10) { ["GD Version"]=>  string(27) "bundled (2.0.23 compatible)" 
      [b]["FreeType Support"]=>  bool(false)[/b] 
      ["T1Lib Support"]=>  bool(false) 
      ["GIF Read Support"]=>  bool(true) 
      ["GIF Create Support"]=>  bool(false) 
      ["JPG Support"]=>  bool(true) 
      ["PNG Support"]=>  bool(true) 
      ["WBMP Support"]=>  bool(true) 
      ["XBM Support"]=>  bool(true) 
      ["JIS-mapped Japanese Font Support"]=>  bool(false) }
      Hmm er sagt mir hier Freetype = false ?! Muss ich dem PHP auch nochmal speziell irgendwo sagen, dass ich Freetype2 installiert hab? HAbs halt im Apache2 einkompiliert. Wie gehts beim php?
      Zuletzt geändert von azrdvbaxxwdd; 07.06.2006, 22:56.

      Kommentar


      • #4
        bitte die regeln befolgen.

        Kommentar


        • #5
          so in ordnung? :-)

          achja hier mein php-configure command:
          Code:
          './configure' 
          '--with-apxs2=/usr/local/lamp/apache2/current/bin/apxs' 
          '--with-mysql=/usr/local/lamp/mysql/current' '--with-zlib-dir=/usr/lib/' 
          '--enable-track-vars=yes' '--enable-url-includes' 
          '--enable-sysvshm=yes' '--enable-sysvsem=yes' '--enable-ftp' 
          '--with-config-file-path=/etc' '--with-gd' '--with-jpeg' 
          '--with-jpeg-dir=/usr/lib' '--with-png' '--with-png-dir=/usr/lib' 
          '--with-freetype2=/usr/include/freetype2'
          Zuletzt geändert von azrdvbaxxwdd; 07.06.2006, 23:02.

          Kommentar

          Lädt...
          X