Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
$groesse = size($pfadOriginal);
$breite = $groesse[0];
$hoehe = $groesse[1];
$neueHoehe = 100 // oder was auch immer
$neueBreite = intval($neueHoehe*$breite/$hoehe);
if ($groesse[2] == 2) { // groesse[2] legt den Grafiktyp fest (1: GIF, 2: JPEG, 3: PNG, 4: SWF)
$altesBild = ImageCreateFromJPEG($pfadOriginal);
$neuesBild = ImageCreate($neueBreite, $neueHoehe);
ImageCopyResized($neuesBild, $altesBild, 0, 0, 0, 0, $neueBreite, $neueHoehe, $breite, $hoehe);
ImageJPEG($neuesBild, $thumbPfad);
}