array(4) { ["red"]=> int(255) ["green"]=> int(127) ["blue"]=> int(38) ["alpha"]=> int(0) }
array(4) { ["red"]=> int(255) ["green"]=> int(127) ["blue"]=> int(38) ["alpha"]=> int(0) }
array(4) { ["red"]=> int(255) ["green"]=> int(127) ["blue"]=> int(38) ["alpha"]=> int(0) }
array(4) { ["red"]=> int(255) ["green"]=> int(127) ["blue"]=> int(38) ["alpha"]=> int(0) }
array(4) { ["red"]=> int(255) ["green"]=> int(127) ["blue"]=> int(38) ["alpha"]=> int(0) }
array(4) { ["red"]=> int(255) ["green"]=> int(127) ["blue"]=> int(38) ["alpha"]=> int(0) }
array(4) { ["red"]=> int(255) ["green"]=> int(127) ["blue"]=> int(38) ["alpha"]=> int(0) }
array(4) { ["red"]=> int(255) ["green"]=> int(127) ["blue"]=> int(38) ["alpha"]=> int(0) }
array(4) { ["red"]=> int(255) ["green"]=> int(127) ["blue"]=> int(38) ["alpha"]=> int(0) }
.....
.....
.....
y lo que yo quiero es que imprima por ejemplo:
N pixeles de color 222,222,222
N pixeles de color 123,123,123
.....
.....
.....
este es mi codigo:
Código
<html> <head> <meta charset="utf-8"> <title>Colores</title> <link href="hoja_styles.css" rel="stylesheet"> </head> <body> <img src="colores.jpg" /><br /><br /> <?php for($x=0;$x<$largo;$x++) { for($y=0;$y<$ancho;$y++) { echo "<br />"; } } ?> </div> </body> </html>