从 POSTED 标头获取图像文件名('Content-type: image.jpeg')

Posted

技术标签:

【中文标题】从 POSTED 标头获取图像文件名(\'Content-type: image.jpeg\')【英文标题】:Getting Image Filename from POSTED header('Content-type: image.jpeg')从 POSTED 标头获取图像文件名('Content-type: image.jpeg') 【发布时间】:2012-09-16 20:11:56 【问题描述】:

我使用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页面。我希望能够包含我的网站页眉/页脚/样式等,并将裁剪后的图像显示为文件名,这样我就可以让用户批准并将其保存到相应的文件夹中。

谁能帮忙?

谢谢

【问题讨论】:

【参考方案1】:

我只是通过注释掉标头并指定要保存到的路径来解决这个问题:

//header('Content-type: image/jpeg');
imagejpeg($dst_r,"userimages/$user_id/$user_id.jpg",$jpeg_quality);
// Remove from memory
imagedestroy($dst_r);

【讨论】:

以上是关于从 POSTED 标头获取图像文件名('Content-type: image.jpeg')的主要内容,如果未能解决你的问题,请参考以下文章

反应 - 从 s3 获取图像时,请求的资源上不存在“Access-Control-Allow-Origin”标头

设置 HTTP 获取标头 Javascript

django - 如何将图像数组发布到视图

从android 11的范围存储中删除图像

如何从 iOS 私有 api 二进制文件中获取标头和函数?如何对应用程序进行逆向工程?

由于 CORS,无法从 S3 存储桶中获取图像