我正在使用Jcrop允许我将上传的图片裁剪为用户头像。
基本上,我在使用此表单裁剪和发布图像后,从'Content-type:image / jpeg'标题中获取图像信息时遇到问题:
<img src='*userimage*' id='cropbox' />
<form action='crop.php' method='post' onsubmit='return checkCoords();'>
<input type='hidden' id='x' name='x' />
<input type='hidden' id='y' name='y' />
<input type='hidden' id='w' name='w' />
<input type='hidden' id='h' name='h' />
<input type='submit' value='Crop Image' />
</form>
此帖子发布的页面只有以下代码:
<?php
$targ_w = $targ_h = 150;
$jpeg_quality = 90;
$src = 'userimages/63/63.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');
imagejpeg($dst_r,null,$jpeg_quality);
?>
这显示裁剪后的图片很棒,但我不希望它像这样张贴到crop.php页面。我希望能够包含我的网站页眉/页脚/样式等,并将裁剪后的图像显示为文件名,这样我就可以让用户批准并保存到相应的文件夹中。
有人可以帮忙吗?
由于
答案 0 :(得分:0)
我只是通过注释掉Header并指定保存到的路径来解决这个问题:
//header('Content-type: image/jpeg');
imagejpeg($dst_r,"userimages/$user_id/$user_id.jpg",$jpeg_quality);
// Remove from memory
imagedestroy($dst_r);