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.
$colorBlack = imagecolorallocate(0, 0, 0);
$colorWhite = imagecolorallocate(255, 255, 255);
$colorBlack = imagecolorallocate($im, 0, 0, 0);
$colorWhite = imagecolorallocate($im, 255, 255, 255);
RewriteEngine On
RewriteRule ^bild\.png$ /bild.php [L]
Sorry, es kam halt irgendwie so rueber. Hab nix gesagt.d-minded hat gesagt.:Sven Mintel hat Recht. Ich meinte damit:
"Das ist nicht die Fehlerquelle". Was "enabled" bzw. "disabled" bedeutet ist mir durchaus bekannt. ;-)
<?php
$text = 'Lorem Ipsum';
$fontSize = 16;
$fontFile = 'Madef';
$textInfo = imagettfbbox($fontSize, 0, $fontFile, $text);
$im = imagecreatetruecolor($textInfo[2], $textInfo[3]);
$colorBlack = imagecolorallocate($im, 0, 0, 0);
$colorWhite = imagecolorallocate($im, 255, 255, 255);
imagettftext($im, $fontSize, 0, 0, 0, $colorWhite, $fontFile, $text);
header('Content-Type: image/png');
imagepng($im);
imagedestroy($im);
?>
<?php
header('Content-Type: text/plain');
$text = 'ABC';
$fontSize = 42;
$fontFile = './Pigiarniq-Bold.ttf';
$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);
exit;
?>
<?
$zeit = date("H:i:s", time());
$datum = date("d.m.Y" time());
$ip = $_SERVER["REMOTE_ADDR"];
$width = 200;
$height = 50;
$pic = ImageCreate($width, $height);
$weiss = ImageColorAllocate($pic, 255, 255, 255);
$schwarz = ImageColorAllocate ($pic, 0, 0, 0);
ImageFilledRectangle($pic, 0, 0, $width, $height, $weiss);
ImageString($pic, 4, 1, 1, "Uhrzeit: ".$zeit, $schwarz);
ImageString($pic, 4, 1, 15, "Datum: ".$datum, $schwarz);
Imagestring($pic, 4, 1, 30, "Deine IP: ".$ip, $schwarz);
ImagePNG($pic);
ImageDestroy($pic)
?>