Fehlermeldung:
Fatal error: Call to undefined function imagecreatefromjpeg() in pfad/name.php on line 113
Line 113:
Was isn da falsch?
danke schonmal im vorraus für hilfe.
Fatal error: Call to undefined function imagecreatefromjpeg() in pfad/name.php on line 113
PHP-Code:
$PicPathIn = "../../../upload/referenzen/";
$PicPathOut = "../../../upload/referenzen/tn/";
$bild = $strFilename;
if (eregi("[0-9a-zA-Z]([.][0-9a-zA-Z])", $bild)) {
$size = getimagesize("$PicPathIn"."$bild");
$breite = $size[0];
$hoehe = $size[1];
$neueBreite = 60;
$neueHoehe = 40;
intval($hoehe*$neueBreite/$breite);
$altesBild = imagecreatefromjpeg($PicPathIn.$bild);
$neuesBild = imagecreatetruecolor($neueBreite,$neueHoehe);
imagecopyresized($neuesBild,$altesBild,0,0,0,0,$neueBreite,
$neueHoehe,$breite,$hoehe);
imagejpeg($neuesBild,"$PicPathOut"."TN"."$bild");
PHP-Code:
$altesBild = imagecreatefromjpeg($PicPathIn.$bild);
danke schonmal im vorraus für hilfe.
Kommentar