在客戶端的JavaScript 中訪問JPEG EXIF 旋轉數據
問題:
旋轉處理基於JPEG EXIF 資料中記錄的原始旋轉的照片是一個挑戰瀏覽器中的JavaScript和本地圖像。
客戶端解決方案:
為了解決此問題,我們需要一個客戶端解決方案,使 JavaScript 能夠提取方向資訊來自 JPEG EXIF 資料。一種方法涉及利用FileReader API 和DataView 物件:
<br>function getOrientation(file, callback) {<br> const reader = new FileReader();<br> reader.onload = (reader.onload = ( e)=> {<pre class="brush:php;toolbar:false">const view = new DataView(e.target.result); if (view.getUint16(0, false) != 0xFFD8) return callback(-2); let length = view.byteLength, offset = 2; while (offset < length) { if (view.getUint16(offset+2, false) <= 8) return callback(-1); const marker = view.getUint16(offset, false); offset += 2; if (marker == 0xFFE1) { if (view.getUint32(offset += 2, false) != 0x45786966) return callback(-1); const little = view.getUint16(offset += 6, false) == 0x4949; offset += view.getUint32(offset + 4, little); const tags = view.getUint16(offset, little); offset += 2; for (let i = 0; i < tags; i++) { if (view.getUint16(offset + (i * 12), little) == 0x0112) { return callback(view.getUint16(offset + (i * 12) + 8, little)); } } } else if ((marker & 0xFF00) != 0xFF00) break; else offset += view.getUint16(offset, false); } return callback(-1);
};
reader.readAsArrayBuffer(file);
}
此程式碼片段舉例說明了一個客戶端解決方案從JPEG EXIF 資料中提取方向標籤。透過利用FileReader和DataView,它可以快速有效地檢索所需的資訊。
以上是如何在客戶端的 JavaScript 中存取 JPEG EXIF 旋轉資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!