kruemelz
Anmeldedatum: 27.07.2008 Beiträge: 3 Wohnort: Zwickau
|
Verfasst am: 27.07.2008, 22:00 Titel: Warning: imagecreatefrompng(captcha.png) u.s.w. |
|
|
Hallo nochmal,
habe noch ein weiteres Problem. Das Bild und der Text werden korrekt angezeigt. Das Ganze teste ich grad lokal mit XamPP!
Trotzdem erscheinen folgende Fehlermeldungen:
----
Warning: imagecreatefrompng(captcha.png) [function.imagecreatefrompng]: failed to open stream: No such file or directory in C:\xampp\htdocs\guestbook\captcha\captcha.php on line 25
Warning: imagecolorallocate(): supplied argument is not a valid Image resource in C:\xampp\htdocs\guestbook\captcha\captcha.php on line 26
Warning: imagettftext() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\guestbook\captcha\captcha.php on line 32
Warning: imagepng(): supplied argument is not a valid Image resource in C:\xampp\htdocs\guestbook\captcha\captcha.php on line 33
Warning: imagedestroy(): supplied argument is not a valid Image resource in C:\xampp\htdocs\guestbook\captcha\captcha.php on line 34
----
Nachfolgend die Zeilen der captcha.php:
----
$img = ImageCreateFromPNG('captcha.png'); //Backgroundimage
$color = ImageColorAllocate($img, 0, 0, 0); //Farbe
$ttf = $_SERVER['DOCUMENT_ROOT']."/guestbook/captcha/xfiles.ttf"; //Schriftart
$ttfsize = 20; //Schriftgrösse
$angle = rand(0,5);
$t_x = rand(5,30);
$t_y = 35;
imagettftext($img, $ttfsize, $angle, $t_x, $t_y, $color, $ttf, $text);
imagepng($img);
imagedestroy($img);
----
Blicke ich grad nicht durch. Hat jemand ´nen Plan?
Gruß, Alex |
|
kruemelz
Anmeldedatum: 27.07.2008 Beiträge: 3 Wohnort: Zwickau
|
Verfasst am: 03.08.2008, 17:09 Titel: |
|
|
Hallo Steef389,
danke. Diese Fehlermeldungen sind nun fort.
Habe allerdings eine Neue. :/
---
Warning: imagettftext() [function.imagettftext]: Invalid font filename in C:\xampp\htdocs\guestbook\captcha\captcha.php on line 32
�PNG IHDR�(�/���IDATx���1 �@���_�OߧF��6TE4�6���m����H�5���[�s�spI"� R�H"� R�H"� R�H"� R�H"� R�H"� R�H"� R�H"� R�H����sI"z���*�"IEND�B`�
---
Gruß, Alex |
|