Ahoj,
mel bych dotaz k GD knihovne. Udelal jsem si svuj vlastni script pro CAPTCHA - kontrolni kod. Ovsem jsem po uloadu zjistil, ze mi na wz nejede a potreboval bych zjistit proc. Vzhledem k tomu, ze se mi zda zbytecny, abych zde uvadel kod, a nekdo by se v nim obtezoval hledat "chyby". Navic jsem zjistil, ze mi ani nejede originalni kod z manualu PHP. Proto zde uvadim "originalni" kod, ve kterym by snad nemely byt chyby. Nevite prosim, proc ani tento kod nevygeneruje pozadovany obrazek a tedy prohlizec zadny nezobrazi? Je treba nejake specificke nastaveni pro WZ?
Diky za radu.
====================================
<?php
// Set the content-type
header("Content-type: image/png");
// Create the image
$im = imagecreatetruecolor(400, 30);
// Create some colors
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 399, 29, $white);
// The text to draw
$text = 'Testing...';
// Replace path by your own font path
$font = 'arial.ttf';
// Add some shadow to the text
imagettftext($im, 20, 0, 11, 21, $grey, $font, $text);
// Add the text
imagettftext($im, 20, 0, 10, 20, $black, $font, $text);
// Using imagepng() results in clearer text compared with imagejpeg()
imagepng($im);
imagedestroy($im);
?>
====================================
Tak jsem to vyresil, chybel font.
(Po zruseni header("Content-type: image/png"); se vypsalo varovani o neexistenci fontu.)
Resenim je nahrat font.
Chtel bych se ale zeptat, je mozno nejak vyuzit font, ktery je na serveru (aniz bych musel nahravat font na server?)
Diky.