Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
function create_thumbs($PicPathIn, $PicPathOut, $destHeight, $dest_qual) {
$verz=opendir ($PicPathIn);
//Bild-Schleife
while ($bild = readdir ($verz)) {
if($bild != "." && $bild != ".."){
$src_file = $PicPathIn.$bild;
$dest_file = $PicPathOut."medium-".$bild;
$imagetype = array( 1 => 'GIF', 2 => 'JPG', 3 => 'PNG', 4 => 'SWF', 5 => 'PSD', 6 => 'BMP', 7 => 'TIFF', 8 => 'TIFF', 9 => 'JPC', 10 => 'JP2', 11 => 'JPX', 12 => 'JB2', 13 => 'SWC', 14 => 'IFF');
$imginfo = getimagesize($src_file);
$imginfo[2] = $imagetype[$imginfo[2]];
// height/width
$srcWidth = $imginfo[0];
$srcHeight = $imginfo[1];
$destWidth = (int)($srcWidth*$destHeight/$srcHeight);
if ($imginfo[2] == 'JPG')
$src_img = imagecreatefromjpeg($src_file);
else if ($imginfo[2] == 'PNG')
$src_img = imagecreatefrompng($src_file);
$dst_img = imagecreatetruecolor($destWidth, $destHeight);
imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $destWidth, (int)$destHeight, $srcWidth, $srcHeight);
imagejpeg($dst_img, $dest_file, $dest_qual);
imagedestroy($src_img);
imagedestroy($dst_img);
}
}
}