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.
<?php
header('Content-Type: image/png');
$bg = imagecreatetruecolor(300, 600);
$red = imagecolorallocate($bg, 255, 0, 0);
$black = imagecolorallocate($bg, 0, 0, 0);
// Transparenzfarbe setzen
imagecolortransparent($bg, $black);
// Draw a red rectangle
imagefilledrectangle($bg, 40, 40, 50, 25, $red);
imagepng($bg);