Hallo!
ich habe diesen Code.
Ich möchte aber, dass es das neue Bild in einen Ordner speichert.
Kann mir wer erklären wie das funktioniert?
Danke
PHP:
<?php
header ("Content-type: image/jpeg");
//Die aufzurufende Datei
$file = "5/big/001.JPG";
//Der Copyrighttext
$copy = "(c) OLDhouse";
//Position des Copyrighttextes
$textx = "0";
$texty = "110";
//Weite und Höhe des auszugebenden Bildes
$width = 160;
$height = 120;
$scource = imagecreatefromjpeg($file);
$destination = imagecreate($width, $height);
//Textfarbe
$white = imagecolorallocate($destination, 255, 255, 255);
imagecopyresized($destination, $scource, 0, 0, 0, 0, $width, $height, imagesx($scource), imagesy($scource));
imagestring($destination, 0, $textx, $texty, $copy, $white);
imagejpeg($destination);
imagedestroy($destination);
?>
ich habe diesen Code.
Ich möchte aber, dass es das neue Bild in einen Ordner speichert.
Kann mir wer erklären wie das funktioniert?
Danke