Questions tagged [exif]

Exchangeable image file format is a standard for storing metadata such as camera, lens, and geo information in JPEG and TIFF files

Exchangeable image file format is a standard for storing metadata from digital cameras.

The tags defined in the Exif standard cover a broad spectrum:

  • Date and time information.

  • Camera settings:e camera model and make, orientation (rotation), and ISO speed, metering mode

  • Lens settings: make and model, aperture, shutter speed, focal length

  • File settings: File format, color mode

  • A thumbnail for previewing the picture

  • Descriptions

  • Copyright information.

Like EXIF, also holds meta information in image files.

1824 questions
6
votes
3 answers

Fixing Whatsapp Exif wrong creation date after restoring whatsapp backup

After restoring my whatsapp backup I encountered the problem, that the image creation date is set to the current date. This resulted in a mess in the android library.
Mr.Sheep
  • 1,368
  • 1
  • 15
  • 32
6
votes
1 answer

fetching the precise date time including milliseconds the time photo is taken from image file in php

I am developing a Web Application using PHP Laravel that involves some processing as well. What I am doing now is I am trying to extract the time taken from the image file when user uploads the file. I can extract the data using exif_read_data…
Wai Yan Hein
  • 13,651
  • 35
  • 180
  • 372
6
votes
0 answers

Exif Orientation Image in React JS

I am using https://www.npmjs.com/package/react-exif-orientation-img package and images doesn't get displayed correctly in react.js Checked on chrome and mozilla but doesn't seem to work. image-orientation css property works only in Chrome so using…
Sharath
  • 2,348
  • 8
  • 45
  • 81
6
votes
2 answers

Extracting EXIF from JPEG

I am getting hung up on reading EXIF data from my JPEGs. I thought it would be easy to do. Thus far I have completed the following steps for my family's online image gallery (using C#/ASP.Net 3.5): Upload a ZIP file containing JPEG's (that are from…
Yoav
  • 150
  • 1
  • 2
  • 15
6
votes
2 answers

PHP imagecreatefromjpeg while keeping orientation

I have been working on my image upload website. I am trying to take pictures from my IPhone and upload them to my web server. My files are uploading fine, However the problem i am running into is all of my images rotate 90 degrees to the left. My…
Morjee
  • 89
  • 9
6
votes
1 answer

When you run the script KeyError: 'EXIF DateTimeOriginal'

I need to know the properties of an image data taken (day, time, hour, minute, second) import exifread import os directoryInput=r"C:\tekstilshiki" for filename in os.listdir(directoryInput): if filename.endswith('.jpg'): with…
6
votes
3 answers

EXIFTOOL - Set datetime from filename

I have many photos named with a date format but the EXIF dates don't match. e.g. 2016-12-16_20-20-29.jpg Running them through EXIFTOOL I can almost overwrite the dates but it doesn't match the exact date format. exiftool "-datetimeoriginal
sidonaldson
  • 24,431
  • 10
  • 56
  • 61
6
votes
1 answer

Fix EXIF orientation Angular 2

How can I fix the EXIF orientation in Angular 2? I am loading an image from mobile and I need to fix the orientation. I have tried the solution for this post: Component inputs by reference but FileReaderEvent type is not recognised by typescript,…
user2574370
  • 61
  • 1
  • 4
6
votes
2 answers

Access metadata (exif tags) of image taken by UIImagePickerController - iOS/iPhone

Is it possible to access the metadata of an image captured by UIImagePickerController in iOS? I understand this can be done with AssetLibrary framework for images captured by the camera application (or otherwise present in the iPhone photo library),…
Casey Flynn
  • 13,654
  • 23
  • 103
  • 194
6
votes
1 answer

How to add a custom column to MacOS Finder?

I would love to show a custom column in MacOS Finder to display certain EXIF Tags from image files. Is there a way to extend the Finder?
Matthias Baumgart
  • 905
  • 1
  • 9
  • 22
6
votes
1 answer

Get EXIF Orientation Tag,Rotate to Proper Orientation, Process Image and Save the Image with proper Orientation

My program processes some images in batch.I currently need to read the exif orientation tag of the image,rotate it to proper orientation,do some processing and save the image without any EXIF Orientation Tag,but with proper Rotation.(or with EXIF…
techno
  • 6,100
  • 16
  • 86
  • 192
6
votes
2 answers

Why am I receiving ReferrenceError: BinaryFile is not Defined

I'm following the result in this answer exactly but I am receiving the following error: ReferenceError: BinaryFile is not defined Here's the code where that is used: fr.onloadend = function() { console.log(this); exif =…
Vecta
  • 2,312
  • 5
  • 28
  • 47
6
votes
1 answer

Photo framework: save exif data from picker (aperture, focal length, shutter speed, …)

I'm trying to do the equivalent of writeImageToSavedPhotosAlbum with the new Photo framework. To save the image, I only do this: func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [NSObject : AnyObject])…
Arnaud
  • 17,268
  • 9
  • 65
  • 83
6
votes
6 answers

C# Retrieve Canon Specific EXIF Data

I have written an app that reads the basic EXIF data from an image via the PropertyItems exposed in .Net's System.Drawing.Image class. However, I cannot retrieve Canon specific EXIF data via these properties. How does one read this information? I…
dkpatt
  • 580
  • 5
  • 12
6
votes
1 answer

Extracting EXIF Data Using PHP

I'm building a website for a client who requires a photo gallery and I was going to use the file name as the alt tag however he wants me to use the keywords he has put in the EXIF data - As I'm no photographer I really don't understand the technical…
user3177012
  • 663
  • 2
  • 8
  • 19