如何使用 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
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板