码迷,mamicode.com
首页 > Web开发 > 详细

【PHP】上传图片翻转问题

时间:2021-07-28 21:37:41      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:上传图片   idt   功能   方法   size   amp   div   ges   gic   

手机图片上传后获取到的宽高反了,网上的说法是操作系统里的文件属性功能可能已经把图片给修正过了,看到的图片是正确的,但是通过getimagesize获取到的宽高不对;这时需要用到exif扩展的exif_read_data方法获取图片头部信息

 

exif扩展安装:[https://www.cnblogs.com/lanse1993/p/13229238.html]

 

- 获取宽高信息

$orientationArr  = [1 => 0, 8 => -90, 3 => 180, 6 => 90];
$imageInfo       = \exif_read_data($posterImg);
$orientation     = empty($imageInfo[‘Orientation‘]) ? -1 : $imageInfo[‘Orientation‘];
if (! empty($orientationArr[$orientation]) && abs($orientationArr[$orientation]) == 90) {
    $posterImgWidth = $imageInfo[‘ExifImageLength‘];
} else {
    $posterImgWidth = getimagesize($posterImg)[0];
}

 

- 需要用来画图时(这里用的Imagick)

//载入图像
$this->img = new \Imagick(realpath($imgname));

// 图片是否旋转
$orientationArr  = [1 => 0, 8 => -90, 3 => 180, 6 => 90];
$imageInfo       = \exif_read_data(realpath($imgname));
$orientation     = empty($imageInfo[‘Orientation‘]) ? -1 : $imageInfo[‘Orientation‘];
if (! empty($orientationArr[$orientation])) {
    $this->img->rotateImage(‘#000‘, $orientationArr[$orientation]);
}

 

【PHP】上传图片翻转问题

标签:上传图片   idt   功能   方法   size   amp   div   ges   gic   

原文地址:https://www.cnblogs.com/lanse1993/p/15071589.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!