EXIF Data
Read EXIF metadata from photos: camera model, date taken, GPS coordinates. Auto-orient based on EXIF orientation tag.
What you should see: EXIF read from the photo in the browser and shown before upload, with orientation corrected automatically so sideways phone photos appear upright. JPEG only, up to 20 MB.
Drag & drop files here, or paste from clipboard
<core-upload asp-upload-url="/api/upload/upload"
asp-extensions=".jpg,.jpeg"
asp-max-size="20MB"
asp-auto-orient="true"
asp-auto-upload="true"
asp-progress="true"
asp-thumbnails="true"
asp-on-select="onExifSelect"
asp-button-text="Select Photo">
</core-upload>
<script>
function onExifSelect(file) {
if (file.exif) {
console.log('Camera:', file.exif.camera);
console.log('Date:', file.exif.dateTime);
console.log('GPS:', file.exif.gps);
}
}
</script>