Hallo,
Ich habe zum Beispiel die Werte:
-1
33
106
33
106
-23
-1
-23
Ein Bild erstellen aber nur wie?
MfG
Ich habe zum Beispiel die Werte:
-1
33
106
33
106
-23
-1
-23
Ein Bild erstellen aber nur wie?
MfG
var_dump($gehirn); exit;
var_dump($gehirn); exit;
var_dump($gehirn); exit;
<?php
$ttf = "./ttf/metin2.ttf"; //Schriftart
$ttfsize = 20; //Schriftgrösse
$text = "Test\nNachricht";
$bbox = imagettfbbox($ttfsize, 0, $ttf, $text);
$width = $bbox[4] - $bbox[6];
$height = $bbox[1] - $bbox[6];
$image = imagecreate($width, $height);
$trans = imagecolortransparent($image);
$png = imagettftext($image, $ttfsize, 0, 10, 20, $trans, $ttf, $text);
header('Content-type: image/png');
imagepng($png);
imagedestroy($png);
?>
Warning: imagepng() expects parameter 1 to be resource, array given in C:\xampp\htdocs\***\test.php on line 12 Warning: imagedestroy() expects parameter 1 to be resource, array given in C:\xampp\htdocs\***\test.php on line 13
Kommentar