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
0
votes
1 answer

How to remove all EXIF informations without changing file date (modified date)?

I have some JPEG photos with many EXIF / tag informations. I want to remove all EXIF information without changing the date of the file (modified date). Do you know how to do that ? I'm on macOS Sierra and I know some terminal commands. (the problem…
NIF
  • 462
  • 2
  • 7
  • 23
0
votes
2 answers

Making sense of EXIF longitude and latitude

If I right click the details on an image I get the following under GPS When querying the EXIF (GpsLatitude and GpsLongitude) data I get and I can see that rows 0 and 8 are the degrees and minutes, but the rest makes no sense. What am I…
gchq
  • 1,603
  • 2
  • 27
  • 52
0
votes
3 answers

What function is for embeding exif data?

Possible Duplicate: How do I add exif data to an image? exif_read_data() is for reading exif data, but what function is for embeding exif data?
Sokol
  • 9
  • 1
0
votes
1 answer

How can I embed some EXIF data into JPEG?

Possible Duplicate: How do I add exif data to an image? How can I embed some EXIF data into JPEG (ie. description, copyright notice, etc)?
rari
  • 11
0
votes
0 answers

Read jpeg metadata with jai-imageio-jpeg2000

I want to read some jpeg metadata like width, height, color depth and resolution with jai-imageio-jpeg2000 library. Is there any example for it?
mohammad_1m2
  • 1,571
  • 5
  • 19
  • 38
0
votes
1 answer

Get Taken Date in EXIF property from Bitmap

I have an application which analyses images. I have to retreive the Date Taken of an image. I use this function : var r = new Regex(":"); var myImage = LoadImageNoLock(path); { PropertyItem propItem = null; try { propItem =…
0
votes
2 answers

Python, ignore files with no Exif data

I am trying to do a mass extraction of gps exif data, my code below: from PIL import Image from PIL.ExifTags import TAGS, GPSTAGS def get_exif_data(image): exif_data = {} info = image._getexif() if info: for tag, value in…
Maverick
  • 789
  • 4
  • 24
  • 45
0
votes
1 answer

Android user-uploaded image rotated in ImageView with false Exif data

I am working on an Android app where part of the functionality is that the user can select an image from their device, associate it with a specific item from a list, and use it in the app. My intention was to store the image itself in internal…
BFrisch
  • 13
  • 7
0
votes
0 answers

Getting location of the images in android?

I am making an android application that displays all the images of the gallery location wise. I am unsure of the ExifData if it can help me in sorting the images, location wise. Any guidance along with the necessary code will be helpful.
0
votes
2 answers

AngularJs: Directive trigger when value change

I am a newbie of angularjs using version 1.6.4. I am using this directive Angular Fix Image Orientation Directive. But the problem is sometimes the directive trigger before imageUrl model update. How can i trigger again when value update, so that…
MTA
  • 1,033
  • 5
  • 16
  • 37
0
votes
0 answers

Image.GetThumbnailImage() after Image.RotateFlip() seems to ignore rotation

I am using Image.RotateFlip() to fix the orientation of some photos. I read the EXIF information of each photo and then I rotate/flip the image accordingly to make it straight up. My code is something like this: //get info before processing. var…
CesarGon
  • 15,099
  • 6
  • 57
  • 85
0
votes
1 answer

How to extract image properties from an image URL in JAVA?

Given a URL like: https://media.deltafaucet.com/elvis/OnWhite/lg/58471-SS-PK-B1.png I want to extract the information such as: 1. Address (the url) 2. Type (file type e.g: image/png) 3. Render Mode (Quirks mode) 4. Modified date 5. Image Format…
shsulabh
  • 1
  • 2
0
votes
1 answer

Using bitwise to enumerate EXIF flash readable string

When you pull EXIF data from an image with PHP, it has a Flash value which is an integer. For example, 16 which when converted to hex is 0x10. This means the flash was switched off, and the flash didn't fire: 0x0 = No Flash 0x1 = Fired 0x5 …
SpongeBobPHPants
  • 641
  • 7
  • 19
0
votes
1 answer

Does apple's CGImageMetadataSetValueWithPath work properly?

I'm trying to geotag a photo and I'm using this dictionary: var gpsProperties: [(NSString, String)] = [ ("exif:GPSLongitude", "\(abs(coordinate.longitude))"), ("exif:GPSLongitudeRef", coordinate.longitude < 0 ? "W" : "E"), …
Pawel Jurczyk
  • 165
  • 2
  • 10
0
votes
1 answer

Missing EXIF info in images selected from gallery using EXTERNAL_CONTENT_URI

I'm trying to gather EXIF info (date of picture taken, geotagging, orientation) from images selected from an EXTERNAL_CONTENT_URI intent, but it seems that if the pictures come from the internet (e.g. Google Photos) the EXIF data is somehow…
Niddu
  • 119
  • 8
1 2 3
99
100