Estoy usando jcrop para seleccionar parte de una imagen para crear asi un avatar, la cosa es esta, desde un formulario subo una imagen al servidor y despues con jcrop la agarro y la recorto, luego de esto (y aca viene el problema) quiero agarrar la parte cortada y poder manejarla con html, meterla en una tabla, o un div, etc.
ahora, el codigo es este, aver si me pueden dar una mano:
Código PHP:
<table border="0" cellpadding="0" cellspacing="0" width="521" align="center">
<!-- fwtable fwsrc="Sin título" fwpage="Página 1" fwbase="7.jpg" fwstyle="Dreamweaver" fwdocid = "339291782" fwnested="0" -->
<tr>
<td>
<?php
/**
* Jcrop image cropping plugin for jQuery
* Example cropping script
* @copyright 2008-2009 Kelly Hallman
* More info: http://deepliquid.com/content/Jcrop_Implementation_Theory.html
*/
$targ_w = $targ_h = 150;
$jpeg_quality = 90;
$src = $_POST['dir']; // aca traigo la direccion de la imagen ejemplo, imagen/prueba.jpg
$img_r = imagecreatefromjpeg($src);
$dst_r = ImageCreateTrueColor( $targ_w, $targ_h );
imagecopyresampled($dst_r,$img_r,0,0,$_POST['x'],$_POST['y'],
$targ_w,$targ_h,$_POST['w'],$_POST['h']);
// header('Content-type: image/jpeg');
echo ' </td>
</tr>
<tr>
<td background="images/7/7_r1_c1.jpg" height="179">
'.imagejpeg($dst_r, null, $jpeg_quality);?>
</td> </tr>
<tr>
<td><img name="n7_r2_c1" src="images/7/7_r2_c1.jpg" width="521" height="350" border="0" id="n7_r2_c1" alt="" /></td>
</tr>
<?php
exit;
?>
</table>
Código PHP:
imagejpeg($dst_r, null, $jpeg_quality);