首頁 > 後端開發 > php教程 > PHP 中 Orientation 属性判断上传图片是否需要旋转

PHP 中 Orientation 属性判断上传图片是否需要旋转

WBOY
發布: 2016-06-23 13:19:44
原創
809 人瀏覽過

<?php$image = imagecreatefromstring(file_get_contents($_FILES['image_upload']['tmp_name']));$exif = exif_read_data($_FILES['image_upload']['tmp_name']);if(!empty($exif['Orientation'])) { switch($exif['Orientation']) {  case 8:   $image = imagerotate($image,90,0);   break;  case 3:   $image = imagerotate($image,180,0);   break;  case 6:   $image = imagerotate($image,-90,0);   break; }}// $image now contains a resource with the image oriented correctly?>
登入後複製

经测试,Android拍照的 Orientation 属性都是1,判断不出是否被旋转了。

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板