Sunucunuzda gd yada freetype kurdunuz, çalışıp çalışmadığını kontrol etmek için aşağıdaki ufak scriptleri kullanabilirsiniz;
GD testi;
<?php
/* Displays details of GD support on your server */
echo ‘<div style=”margin: 10px;”>’;
echo ‘<p style=”color: #444444; font-size: 130%;”>GD ‘;
if (function_exists(“gd_info”)) {
echo ’sunucu tarafından <span style=”color: #00AA00; font-weight: bold;”>desteklenmektedir</span></p>’;
$gd = gd_info();
foreach ($gd as $k => $v) {
echo ‘<div style=”width: 340px; border-bottom: 1px solid #DDDDDD; padding: 2px;”>’;
echo ‘<span style=”float: left;width: 300px;”>’ . $k . ‘</span> ‘;
if ($v)
echo ‘<span style=”color: #00AA00; font-weight: bold;”>Evet</span>’;
else
echo ‘<span style=”color: #EE0000; font-weight: bold;”>Hayır</span>’;
echo ‘<div style=”clear:both;”><!– –></div></div>’;
}
} else {
echo ’sunucu tarafından <span style=”color: #EE0000; font-weight: bold;”>desteklenmemektedir</span></p>’;
}
echo ‘<p>Hosting destek<a href=”http://www.hostingdestek.com”>hostingdestek.com</a></p>’;
echo ‘</div>’;
?>
Freetype testi;
<?php
$i = imagecreatetruecolor(100,50);
$w = imagecolorallocate($i,255,255,255);
$b = imagecolorallocate($i,0,0,0);
imagefill($i,0,0,$b);
imagestring($i,4,5,25,’it works’,$w);
header(“Content-type: image/png”);
imagepng($i);
imagedestroy($i);
?>
/* Displays details of GD support on your server */
echo ‘<div style=”margin: 10px;”>’;
echo ‘<p style=”color: #444444; font-size: 130%;”>GD ‘;
if (function_exists(“gd_info”)) {
echo ’sunucu tarafından <span style=”color: #00AA00; font-weight: bold;”>desteklenmektedir</span></p>’;
$gd = gd_info();
foreach ($gd as $k => $v) {
echo ‘<div style=”width: 340px; border-bottom: 1px solid #DDDDDD; padding: 2px;”>’;
echo ‘<span style=”float: left;width: 300px;”>’ . $k . ‘</span> ‘;
if ($v)
echo ‘<span style=”color: #00AA00; font-weight: bold;”>Evet</span>’;
else
echo ‘<span style=”color: #EE0000; font-weight: bold;”>Hayır</span>’;
echo ‘<div style=”clear:both;”><!– –></div></div>’;
}
} else {
echo ’sunucu tarafından <span style=”color: #EE0000; font-weight: bold;”>desteklenmemektedir</span></p>’;
}
echo ‘<p>Kalite hicbir zaman tesaduf degildir<a href=”http://www.hostcini.com”>hostcini.com</a></p>’;
echo ‘</div>’;
?>