上传使用iphone拍摄的图像时,我有一个问题。 我正在尝试使用PHP和imgrotate函数自动决定是否需要将图像旋转到正确的位置,然后再将其上传到服务器。
我的HTML代码:
<form class="form-horizontal" method="post" enctype="multipart/form-data">
<div class="form-group">
<div class="col-md-9">
<div class="input-group">
<span class="input-group-btn">
<span class="btn btn-default btn-file">
Choose img<input type="file" name="file" id="imgInp">
</span>
</span>
</div>
</div>
</div>
<button type="submit">Send</button>
</form>
我正在使用的PHP代码: 同样返回错误:警告:imagerotate()要求参数1为资源,字符串为。
任何人都有这种情况的工作代码吗?
<?php
$filename = $_FILES['file']['name'];
$exif = exif_read_data($_FILES['file']['tmp_name']);
if (!empty($exif['Orientation'])) {
switch ($exif['Orientation']) {
case 3:
$image = imagerotate($filename, -180, 0);
break;
case 6:
$image = imagerotate($filename, 90, 0);
break;
case 8:
$image = imagerotate($filename, -90, 0);
break;
}
}
imagejpeg($image, $filename, 90);
?>
答案 0 :(得分:10)
您使用imagerotate
错误。在传递文件名时,它希望第一个参数是资源。查看manual
试试这个:
<?php
$filename = $_FILES['file']['name'];
$filePath = $_FILES['file']['tmp_name'];
$exif = exif_read_data($_FILES['file']['tmp_name']);
if (!empty($exif['Orientation'])) {
$imageResource = imagecreatefromjpeg($filePath); // provided that the image is jpeg. Use relevant function otherwise
switch ($exif['Orientation']) {
case 3:
$image = imagerotate($imageResource, 180, 0);
break;
case 6:
$image = imagerotate($imageResource, -90, 0);
break;
case 8:
$image = imagerotate($imageResource, 90, 0);
break;
default:
$image = $imageResource;
}
}
imagejpeg($image, $filename, 90);
?>
不要忘记通过添加以下两行来释放内存:
imagedestroy($imageResource);
imagedestroy($image);