hallo,
ich habe ein Problem mit dem erstellen von thumbnails.
beim ausführen meines scripts erhalte ich folgende fehlermeldund:
=========================================================
Warning: imagecopyresampled(): supplied argument is not a valid Image resource in /home/meakusma/www/admin/index.php on line 201
Warning: imagejpeg(): supplied argument is not a valid Image resource in /home/meakusma/www/admin/index.php on line 202
=========================================================
$filename = $uploaddir.$bild_name1;
$thumbX = 50;
$thumbY = 38;
$imageX = $width1;
$imageY = $height1;
$source = imagecreatefromjpeg($filename);
$dest_ = imagecreatetruecolor($thumbX, $thumbY);
imagecopyresampled($dest, $source, 0, 0, 0, 0, $thumbX, $thumbY, $imageX, $imageY);
imagejpeg($dest,"_tn.jpg", 60);
was mache ich falsch ???
ich bin sicher das der pfad des bildes stimmt.
hilfe käme mir sehr gelegen, ich brauche das dringend.
meine GD
===============
GD Support enabled
GD Version 2.0 or higher
FreeType Support enabled
FreeType Linkage with freetype
T1Lib Support enabled
GIF Read Support enabled
GIF Create Support enabled
JPG Support enabled
PNG Support enabled
WBMP Support enabled
==================
ich habe ein Problem mit dem erstellen von thumbnails.
beim ausführen meines scripts erhalte ich folgende fehlermeldund:
=========================================================
Warning: imagecopyresampled(): supplied argument is not a valid Image resource in /home/meakusma/www/admin/index.php on line 201
Warning: imagejpeg(): supplied argument is not a valid Image resource in /home/meakusma/www/admin/index.php on line 202
=========================================================
$filename = $uploaddir.$bild_name1;
$thumbX = 50;
$thumbY = 38;
$imageX = $width1;
$imageY = $height1;
$source = imagecreatefromjpeg($filename);
$dest_ = imagecreatetruecolor($thumbX, $thumbY);
imagecopyresampled($dest, $source, 0, 0, 0, 0, $thumbX, $thumbY, $imageX, $imageY);
imagejpeg($dest,"_tn.jpg", 60);
was mache ich falsch ???
ich bin sicher das der pfad des bildes stimmt.
hilfe käme mir sehr gelegen, ich brauche das dringend.
meine GD
===============
GD Support enabled
GD Version 2.0 or higher
FreeType Support enabled
FreeType Linkage with freetype
T1Lib Support enabled
GIF Read Support enabled
GIF Create Support enabled
JPG Support enabled
PNG Support enabled
WBMP Support enabled
==================
Kommentar