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.
$bild = 'pfad/zum/bild.jpeg';
$imgh = imagecreatefromjpeg($bild);
$imgs = getimagesize($bild);
$white = imagecolorallocate($imgh,255,255,255);
$font = 12;
$text = "Ein text"
$width = imagefontwidth($font) * strlen($text);
$ypos = $imgs[1] - $font - 8;
$xpos = $imgs[0] - $width - 8;
imagestring($imgh, $font, $xpos, $ypos, $text, $white);
imagejpeg($imgh);