Forum de discussion
Forum « Programmation PHP » (archives)
erreur PHP imagettfbbox et ZIP
Envoyé: 6 juin 2005, 8h13 par xcacou
j'ai deux pb
pb 1 :
je souhaite utiliser imagettfbbox dans du php sous linux donc j'ai compilé avec ceci :
'./configure' '--prefix=/usr/local/php' '--enable-force-redirect' '--with-ming' '--with-gd=/usr/local/gd' '--with-regex=system' '--with-zlib' '--enable-dbase' '--with-freetype-dir=/usr/local/freetype' '--with-ttf' '--enable-gd-native-ttf'
mmais dans lorsque j'utilise la fonction imagettfbbox -> erreur :
Fatal error:Call to undefined function: imagettfbbox() in ...
pb 2 :
je ve faire un fichier zip avec zip.lib et là je créer le zip avec :
<?php
require("zip.lib.php");
$fic1 = "toto.txt";
$fic2 = "toto.zip";
$fil1 = fopen($fic1,'r');
$str1 = fread($fil1,filesize($fic1));
fclose($fil1);
$zipf = new zipfile;
$zipf->addFile($str1,"$fic1");
$ficz = $zipf->file();
$fil2 = fopen($fic2,"w");
fwrite($fil2,$ficz);
fclose($fil2);
?>
et le fichier se créer correctement mais impossible de le lire ni sous linux ni sous windows
merci d'avance et que puis-je faire ??
Réponses
|