PHP で EXIF データを読み取り、画像の向きを調整する
画像をアップロードする場合、特にモバイル デバイスから画像の向きが修正されていることを確認することが重要です。これは、EXIF データを読み取り、それに応じて画像を操作することによって実現されます。
EXIF データの読み取り
exif_read_data() 関数は、アップロードされた画像から EXIF 情報を読み取るために使用されます。 JPEG画像。例:
<code class="php">$exif = exif_read_data($upload_path . $newfilename);</code>
$exif に保存される結果には、方向データを含むさまざまな情報が含まれています。
方向調整
修正するには向きを確認するには、EXIF データの Orientation フィールドを調べます。一般的な値は次のとおりです:
向きの値に基づいて、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 中国語 Web サイトの他の関連記事を参照してください。