Jannis: Automatisch Thumbnails generieren und in Ordner speichern.

Beitrag lesen

Hallo,

Hat jemand von euch eine Idee oder ein paar Ansätze?

So etwas habe ich schon einmal gebraucht. Es sieht bei mir etwa so aus:

--BildSetzen.php--

<?
$ordner = "img";
$handle = opendir($ordner);
while ($file = readdir ($handle)) {
    if($file != "." && $file != "..") {
            $compl = $ordner."/".$file;
$bild="img/".$file;
$size=getimagesize($bild);
             $breite=$size[0];
             $hoehe=$size[1];
                 $neueHoehe=95;
                 $neueBreite=intval($breite*($neueHoehe/$hoehe));
                 $altesBild=ImageCreateFromJPEG($bild);
                 $neuesBild=imagecreatetruecolor($neueBreite,$neueHoehe);
                 imagecopyresampled($neuesBild,$altesBild,0,0,0,0,$neueBreite,$neueHoehe,$breite,$hoehe);
                 ImageJPEG($neuesBild,"thumbs/".$file);
    }
}
?><br>Fertig.

-------------------------
Vielleicht hilft es dir ja irgendwie weiter ;)

MfG, Jannis