ShishaLiVe
Mitglied
so weit bin ich schon mal ^^
aber ich bekomme einen fehler weiß aber net woher?!
Warning: imagecopy(): supplied argument is not a valid Image resource in /var/www/vhosts/-.com/httpdocs/sg_neu/main/index.php on line 935
Warning: imagejpeg(): supplied argument is not a valid Image resource in /var/www/vhosts/-.com/httpdocs/sg_neu/main/index.php on line 936
newHeight: 150
newWidth: 200
PHP:
$testt = "./pic_tmp/hmpf^^.jpg";
$newims = "./pic_tmp/hmpf.jpg";
$imageMaxW = 200;
$imageMaxH= 220;
$image = imagecreatefromjpeg($testt);
$imgzeichen = imagecreatefrompng('./pic_tmp/watermark_sg.png');
$bild = getimagesize($testt);
if(($bild[0] > $imageMaxW) || ($bild[1] > $imageMaxH)) {
if($bild[0]>$bild[1]) {
// querformat
$faktor = $bild[0]/$imageMaxW;
} else {
// hochformat oder quadrat
$faktor = $bild[1]/$imageMaxH;
} }
$newWidth = floor($bild[0]/$faktor);
$newHeight= floor($bild[1]/$faktor);
$w = imagesx($imgzeichen);
$h = imagesy($imgzeichen);
$newImg = imagecreatetruecolor($newWidth,$newHeight);
$testpic = imagecopyresized($newImg, $image, 0, 0, 0, 0, $newWidth, $newHeight, $bild[0], $bild[1]);
$lol = imagecopy($testpic, $imgzeichen, 100, 100, 0, 0, $w, $h);
imagejpeg($lol, $newims, 100);
imagedestroy($newImg); // JPEG löschen
echo "newHeight: $newHeight</br>";
echo "newWidth: $newWidth</br>";
aber ich bekomme einen fehler weiß aber net woher?!
Warning: imagecopy(): supplied argument is not a valid Image resource in /var/www/vhosts/-.com/httpdocs/sg_neu/main/index.php on line 935
Warning: imagejpeg(): supplied argument is not a valid Image resource in /var/www/vhosts/-.com/httpdocs/sg_neu/main/index.php on line 936
newHeight: 150
newWidth: 200