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

Python - Earliest date of JPG file creation

I want to create a function that is going to search for metadata of JPG files using exifread, select the earliest date from Image DateTime tag and print it. Here is the code I have so far (not much :D): def GetExifTagsForFile(filename): file =…
Kirill
  • 1
  • 3
0
votes
1 answer

Rotating HTML Canvas Image Against EXIF Data

So I am made an image upload form that takes an image and adds an overlay. The issue is that if an image is uploaded via an iPhone or Android phone, the image is usually incorrectly rotated because of the EXIF data. I have found a way to map the…
Hybrid
  • 6,741
  • 3
  • 25
  • 45
0
votes
1 answer

Exif data for camera trapping image management. Creating new names for images based on date-time and folder names

I am sorry for my stupid questions but I am struggling to write the code I want. I am working with code found on the blogpost: Fish and Whistle by Dewey Dunnington (http://apps.fishandwhistle.net/archives/956). I am trying to write a loop where I…
Philip
  • 3
  • 1
0
votes
2 answers

Set GPS Location on picture through JavaScript

Is it possible to set the GPS location of a picture through JavaScript? While using Google I found a lot of ways to display this information but non on how to set it.
PhysX
  • 128
  • 1
  • 10
0
votes
1 answer

Bitmap​Metadata.SetQuery does not work on Tiff images

I'm trying to add Exif data to images using System.​Windows.​Media.​Imaging. Most of the sample codes I can find work for JPGs but not Tiffs. Apparently, the codes could not expand the header to add new Exif fields. Any ideas what are missing in…
Chu Bun
  • 513
  • 1
  • 5
  • 17
0
votes
2 answers

Android how add cyrillic symbol in exif file

How add cyrillic symbol in exif file? My code alwais added symbol "?". This code: String userComment = "АБВГДЕЁЖЗИЙКЛСНОПРСТУФХЦЧШЩЪЫЬЭЮЯ"; exifInterface.setAttribute("UserComment", userComment ); exifInterface.saveAttributes(); or String…
user1854307
  • 580
  • 4
  • 8
  • 21
0
votes
0 answers

Cyrillic characters are stored as "?" in exif

I create photo. I need to add a user comment in exif. I try next code @Override public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) { if (exifInterface != null){ try { …
user1854307
  • 580
  • 4
  • 8
  • 21
0
votes
2 answers

Extracting EXIF data (specifically dateTime and GPSLatitude and GPSLongitude) with JavaScript

I have a program where a camera is set up to constantly take pictures (about every 10 seconds or so) and the picture is sent to a folder on my server and then another program refreshes that folder constantly so that I always just have the most…
AmericanMade
  • 453
  • 1
  • 9
  • 22
0
votes
2 answers

GD PHP Rotate Image Black Border

I try to resize and rotate an image with PHP (GD) but when image rotate, it add a black border on right. Exemple image (before resize & rotate): Exemple image (after resize & rotate): Here is my code : $image = $_FILES["file"]["name"]; …
user1269586
  • 372
  • 1
  • 6
  • 27
0
votes
1 answer

How to get Panoramic Exif data in PHP?

I am trying to read XMP-G Pano data from a panoramic image but its not returning complete Exif data. I am using this code. $filename = 'panorama.jpeg'; $exif = read_exif_data($filename, "EXIF"); foreach ($exif as $key => $value) { …
Hasan Ali
  • 1
  • 3
0
votes
0 answers

Google Chrome both does and doesn't correctly handle EXIF images

An application I'm developing has the requirement to correctly handle EXIF images in Google Chrome. Here's an example image: View on Github | View in browser If you click the "view in browser link" above and you are in google chrome, the image will…
Brian Gradin
  • 2,165
  • 1
  • 21
  • 42
0
votes
1 answer

Adding EXIF data to huge image on iOS

I am adding exif data to images on iPhone device using the following code: func testPhoto(identifier: String) { let result = PHAsset.fetchAssets(withLocalIdentifiers: [identifier], options: nil) PHCachingImageManager …
UrK
  • 2,191
  • 2
  • 26
  • 42
0
votes
1 answer

Read Exif thumbnail from JPEG file

Is it possible to access the Exif thumbnail of a JPEG file using only Qt 5.8 functionality and not an external library?
user3224237
  • 448
  • 6
  • 12
0
votes
1 answer

getLatLong always returns false

I'm trying to retrieve longitude and latitude values from geotagged images using android.media.ExifInterface library. However, getLatLong always returns false although the image is geotagged. This is my code : @Override protected void…
KMC
  • 1,677
  • 3
  • 26
  • 55
0
votes
1 answer

Save Exif metadata while converting TIFF to PDF

How can you convert the metadata saved in the TIFF file (in EXIF format) when you convert your TIFF to a PDF? For example, in the TIFF file, I can see the camera model used to make the picture. When I make a PDF based on this TIFF, I seem to lose…
stijndg
  • 3
  • 3
1 2 3
99
100