?? 9-13.php
字號:
<html><body bgcolor=#000000><tt>
<?php
$im = ImageCreateFromJPEG('php-tiny.jpg');
$dx = ImageSX($im);
$dy = ImageSY($im);
for($y=0; $y < $dy; $y++){
for($x=0; $x < $dx; $x++){
$col = ImageColorAt($im, $x, $y);
$rgb = ImageColorsForIndex($im, $col);
printf('<font color=#%02x%02x%02x>#</font>',
$rgb['red'], $rgb['green'], $rgb['blue']);
}
echo "<br>\n";
}
ImageDestroy($im);
?>
</tt></body></html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -