alvaroxz Posted January 21, 2011 Report Share Posted January 21, 2011 (edited) Esta utilidad cambia tus fotos por tablas asi es imposible de copiar a expecion de hacer una captura a la pantalla Requisito: Tener la libreria GD. Contras: la imagen se demora bastante en cargar... Como utilizar: solo llamar asi codigo.php?img=URL_IMAGEN URL_IMAGEN = ruta de la imagen a entablar ojo debe ser jpg codigo: el nombre que le den al codigo <table cellspacing="0" cellpadding="0"> <?php $img = $_GET['img']; $exp = explode(".", $img); if($exp[count($exp)-1] == "jpg"){ $im = imagecreatefromjpeg($img); $x = imagesx($im); $y = imagesy($im); for($i=0;$i<$y;$i++){ echo "<tr>"; for($j=0;$j<$x;$j++){ $rgb = imagecolorat($im, $j, $i); $r = ($rgb >> 16) & 0xFF; $g = ($rgb >> 8) & 0xFF; $b = $rgb & 0xFF; echo '<td style="height:1px; width:1px; background-color:rgb('.$r.', '.$g.', '.$b.');"></td>'; } echo "</tr>"; } } else{ echo '<tr><td>La img no es jpg</td></tr>'; } ?> </table> Edited January 21, 2011 by alvaroxz Link to comment Share on other sites More sharing options...
Ra Posted January 21, 2011 Report Share Posted January 21, 2011 Gracias alvaroxz por el aporte... Lo muevo a Centro de Recursos. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now