PHP 讀取EXIF 資料並調整影像方向
上傳影像時,尤其是從行動裝置上傳影像時,請確保影像方向正確至關重要。這是透過讀取 EXIF 資料並相應地操作影像來實現的。
EXIF 資料讀取
exif_read_data() 函數用於從上傳的影像中讀取 EXIF 資訊JPEG 影像。例如:
<code class="php">$exif = exif_read_data($upload_path . $newfilename);</code>
結果儲存在 $exif 中,包含各種信息,包括方向數據。
方向調整
修正要確定方向,請檢查 EXIF 資料的方向欄位。常見值包括:
根據方向值,使用imagerotate() 或rotateImage() 等影像處理函數套用適當的轉換。
解決iPhone 和Android 圖片的常見問題
您的程式碼可能會遇到來自iPhone 和Android 裝置的映像問題,因為它們通常以非標準方式嵌入EXIF 資料。若要解決此問題,請考慮使用 GD 或 ImageMagick 函數進行方向校正。
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>
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中文網其他相關文章!