如何使用 PHP 根据 EXIF 方向正确旋转上传的图像?

Susan Sarandon
发布: 2024-10-31 14:28:02
原创
796 人浏览过

How to Correctly Rotate Uploaded Images Based on EXIF Orientation using PHP?

PHP read_exif_data 和调整方向

当使用 exif_read_data 根据方向旋转上传的 jpeg 图像时,正确解释数据非常重要。在提供的代码中,正在读取方向,但未准确应用。

读取 EXIF 数据

使用 exif_read_data($upload_path . $newfilename) 提取 EXIF 数据,该数据返回一个数组各种元数据。 “Orientation”键保存指示图像方向的值。

调整方向

要修复旋转,请根据“Orientation”值使用以下 switch 语句:

<code class="php">switch($ort)
{
    case 3: // Rotate 180 degrees left
        $image->imagerotate($upload_path . $newfilename, 180, -1);
        break;

    case 6: // Rotate 90 degrees right
        $image->imagerotate($upload_path . $newfilename, -90, -1);
        break;

    case 8: // Rotate 90 degrees left
        $image->imagerotate($upload_path . $newfilename, 90, -1);
        break;
}</code>
登录后复制

或者,考虑这些优化函数进行方向调整:

GD 函数

此函数旋转图像而不重新采样:

<code class="php">function image_fix_orientation(&$image, $filename) {
    $exif = exif_read_data($filename);

    if (!empty($exif['Orientation'])) {
        switch ($exif['Orientation']) {
            case 3:
                $image = imagerotate($image, 180, 0);
                break;
            
            case 6:
                $image = imagerotate($image, 90, 0);
                break;
            
            case 8:
                $image = imagerotate($image, -90, 0);
                break;
        }
    }
}</code>
登录后复制

单行 GD 版本

<code class="php">function image_fix_orientation(&$image, $filename) {
    $image = imagerotate($image, array_values([0, 0, 0, 180, 0, 0, -90, 0, 90])[@exif_read_data($filename)['Orientation'] ?: 0], 0);
}</code>
登录后复制

ImageMagick 函数

此函数处理 ImageMagick 中的图像方向:

<code class="php">function image_fix_orientation($image) {
    if (method_exists($image, 'getImageProperty')) {
        $orientation = $image->getImageProperty('exif:Orientation');
    } else {
        $filename = $image->getImageFilename();

        if (empty($filename)) {
            $filename = 'data://image/jpeg;base64,' . base64_encode($image->getImageBlob());
        }

        $exif = exif_read_data($filename);
        $orientation = isset($exif['Orientation']) ? $exif['Orientation'] : null;
    }

    if (!empty($orientation)) {
        switch ($orientation) {
            case 3:
                $image->rotateImage('#000000', 180);
                break;

            case 6:
                $image->rotateImage('#000000', 90);
                break;

            case 8:
                $image->rotateImage('#000000', -90);
                break;
        }
    }
}</code>
登录后复制

以上是如何使用 PHP 根据 EXIF 方向正确旋转上传的图像?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板