a*new*found*flo
Erfahrenes Mitglied
Jo, nur das beide nciht funktionieren -zumindest bei mir nicht.
Ich weiß aber auch nicht warum....
Ich weiß aber auch nicht warum....
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.
header('Content-Type:image/png');
header('Content-Type: image/png');
<?php
header('Content-Type: image/png');
$text = 'ABC';
$fontSize = 42;
$fontFile = './Madef';
$textInfo = imagettfbbox($fontSize, 0, $fontFile, $text);
$imWidth = abs($textInfo[0]+$textInfo[2]);
$imHeight = abs($textInfo[1]-$textInfo[7]);
$im = imagecreatetruecolor($imWidth, $imHeight);
$colorWhite = imagecolorallocate($im, 255, 255, 255);
$colorBlack = imagecolorallocate($im, 0, 0, 0);
imagefill($im, 0, 0, $colorWhite);
imagettftext($im, $fontSize, 0, 0, abs($textInfo[7]), $colorBlack, $fontFile, $text);
header('Content-Type: image/png', true);
imagepng($im);
imagedestroy($im);
?>
<?
Header("Content-type: image/png");
$image = imagecreate(102,20);
$maroon = ImageColorAllocate($image,123,9,60);
$white = ImageColorAllocate($image,255,255,255);
$black = ImageColorAllocate($image,0,0,0);
$red = ImageColorAllocate($image,255,60,75);
ImageFilledRectangle($image,0,0,101,19,$maroon);
ImageFilledRectangle($image,0,10,101,19,$white);
ImageFilledRectangle($image,1,11,$rating,18,$red);
ImageRectangle($image,0,10,101,19,$black);
ImageTTFText ($image, 8, 0, 1, 9, $white, "Madef","1");
ImageTTFText ($image, 8, 0, 48, 9, $white, "Madef","5");
ImageTTFText ($image, 8, 0, 90, 9, $white, "Madef","10");
imagePNG($image);
imagedestroy($image);
?>