Imagecreate-Funktion

Breuker

Erfahrenes Mitglied
Hallo!
Folgendes Problem:
Ich möchte mit PHP ein Bild erstellen (Format:jpg)

Dazu hab ich jetzt ein paar Fragen.
1. Wie lautet die Funktion und wie krieg ich ein 468x60 großes Bild hin?
2. Wie positioniere ich einen Tet darin?

Ich danke euch, für eure Hilfe :)

Breuker
 
ok, ich hab mich jetzt ein weingi damit auseinander gesetzt.
ich habe jetzt ein neues problem:

erst einmal mein Skript:
PHP:
<?php 
$left = 0; 
$top = 0; 
$x_size = 468; 
$y_size = 60; 
$char_width = 0; 
$char_height = 0; 
$x_start = $x_left; 
$y_start = $top + $char_height * 1.5; 
$x_end = $x_start + $x_size; 
$y_end = $y_start + $y_size; 
$right = $x_start + $x_size; 
$bottom = $y_start + $y_size + $char_height * 1.5; 
$image = ImageCreate($right - $left, $bottom - $top); 
$background_color = imagecolorallocate($image, 255, 255, 255); 
$text_color = imagecolorallocate($image, 233, 14, 91); 
$grey = ImageColorAllocate($image, 204, 204, 204); 
$white = imagecolorallocate($image, 255, 255, 255); 
$black = imagecolorallocate($image, 0, 0, 0); 
$red = imagecolorallocate($image, 255, 0, 0); 
imagerectangle($image, $left, $top, $right - 1, $bottom - 1, $black );  
$text1 = 'Test';
$text2 = '                          Test2';
imagestring($image, 4, $char_width, (0- 0) / 2, $text1, $black);
imagestring($image, 4, $char_width, (0- 0) / 2, $text2, $black); 
header('Content-type: image/png'); 
$filename = "test.png"; 
ImagePNG($image,$filename); 
ImageDestroy($image); 
printf("<img src='%s'> ", $filename); 
?>

Jetzt möchte ich bei $text2 HTML Code eingeben. Gebe ich ihn jedoch so ein, dann wird er mir angezeitg, nicht umgewandelt. Wie mach ich das nun :confused:

Breuker
 
Zurück