19-01-2005, 20:57
|
|
|
|
חבר מתאריך: 09.04.02
הודעות: 8,000
|
|
מה לא בסדר בקוד הבא:
קוד PHP:
<?php $image = imagecreatefrompng(gingi.png); if ($image) { echo '<pre style="font: 4px/2px Courier New;">'; $width = imagesx($image); $height = imagesy($image); for ($y = 0; $y < $height; $y++) { for ($x = 0; $x < $width; $x++) { $thiscol = imagecolorat($image, $x, $y); $rgb = imagecolorsforindex($image, $thiscol); $htmlcol = sprintf("#%2X%2X%2X", $rgb['red'], $rgb['green'], $rgb['blue']); $char = "<font color=\"$htmlcol\">#</font>"; echo $char; } echo "\n"; } echo '</pre>'; } ?>
זה לא עושה כלום... לא מדפיס כלום, פשוט דף ריק...
|