ispCP - Board - Support
GD Problem lenny 64-bit - Printable Version

+- ispCP - Board - Support (http://www.isp-control.net/forum)
+-- Forum: ispCP Omega International Area (/forum-22.html)
+--- Forum: German Corner (/forum-26.html)
+---- Forum: Plauderecke (/forum-49.html)
+---- Thread: GD Problem lenny 64-bit (/thread-7478.html)



GD Problem lenny 64-bit - fulltilt - 08-13-2009 01:25 AM

Lenny 64-bit - isPCP stable

Bin seit 2 tagen am googlen und finde hierzu einfach keine Lösung ...
Hat jemand von Euch eine Idee wie ich folgendes Problem lösen kann?

und zwar produziert GD nur fehlerhafte schwarze Grafiken.
Ich habe vorhin mal dieses testscript verwendet, das liefert auch nur einen schwarzen Balken, woran kann das liegen?
Code:
<?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);

// 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);
?>