Hi Leute folgendes Sript hab ich:
$bilderpath //steht in einer anderen DATEI
$thedir="$bilderpath/$pid";
mkdir("$thedir", 0777);
//$dst_img = "$bild";
$orgbild ="$bild_name";
$imgname = "kl_$bild_name";
$src_img = ImageCreateFromJPEG($orgbild);
//GROESSEN des BILDES
$sz="142";
$im_width=imageSX($src_img);
$im_height=imageSY($src_img);
// work out new sizes
$factor = $sz/$im_width;
$new_w = $sz;
$new_h = $im_height * $factor;
$dst_img = imagecreate($new_w,$new_h);
imagecopyresized($dst_img,$src_img,0,0,0,0,$new_w,$new_h,imagesx($src_img),imagesy($src_img));
// copy($dst_img, $thedir/$imgname);
imagejpeg($dst_img,"$thedir/$imgname");
copy("$bild", "$thedir/$bild_name"); // Kopiert das Bild
copy("$dst_img", "$thedir/$imgname"); // Kopiert das Bild
Nun mein Problem:
Das Bild wird ganz normal aufm Server kopiert, nur das kleine (kl_...) wird nicht richtig kopiert (bzw. generiert)!
Es gibt zwar eine Datei mit dem Namen kl_... es hat nur 0KB!
Wenn jemand weiß, wo mein Fehler ist - Bitte posten!
Denn dann ist das Projekt fast fertig und kann endlich online gestellt werden!
DANKE
Webbi
$bilderpath //steht in einer anderen DATEI
$thedir="$bilderpath/$pid";
mkdir("$thedir", 0777);
//$dst_img = "$bild";
$orgbild ="$bild_name";
$imgname = "kl_$bild_name";
$src_img = ImageCreateFromJPEG($orgbild);
//GROESSEN des BILDES
$sz="142";
$im_width=imageSX($src_img);
$im_height=imageSY($src_img);
// work out new sizes
$factor = $sz/$im_width;
$new_w = $sz;
$new_h = $im_height * $factor;
$dst_img = imagecreate($new_w,$new_h);
imagecopyresized($dst_img,$src_img,0,0,0,0,$new_w,$new_h,imagesx($src_img),imagesy($src_img));
// copy($dst_img, $thedir/$imgname);
imagejpeg($dst_img,"$thedir/$imgname");
copy("$bild", "$thedir/$bild_name"); // Kopiert das Bild
copy("$dst_img", "$thedir/$imgname"); // Kopiert das Bild
Nun mein Problem:
Das Bild wird ganz normal aufm Server kopiert, nur das kleine (kl_...) wird nicht richtig kopiert (bzw. generiert)!
Es gibt zwar eine Datei mit dem Namen kl_... es hat nur 0KB!
Wenn jemand weiß, wo mein Fehler ist - Bitte posten!
Denn dann ist das Projekt fast fertig und kann endlich online gestellt werden!
DANKE
Webbi
Kommentar