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.
# Erzeuge Bilddaten
$width = 468;
$height = 80;
$image = imagecreate($width, $height);
$bcolor = imagecolorallocate($image, 0xAA, 0xAA, 0xAA);
$fcolor = imagecolorallocate($image, 0, 0, 0);
$font = 'fonts/verdanabf';
$pt = 12;
$area = imagettfbbox($pt, 0, $font, $name);
$name = 'test';
$ttfwidth = $area[4];
$ttfheight = $area[7];
$text = $name;
$x = round( ($width ) -(100), 0);
$y = round((20), 0);
imagettftext($image, $pt, 0, $x, $y, $fcolor, $font, $text);
# sende Bilddaten
header("Content-type: image/png");
imagepng($image);
imagedestroy($image);