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

ImageMagick: -auto-orient is freezing

System (uname -a): Linux Inspiron-530s 4.4.0-97-generic #120-Ubuntu SMP Tue Sep 19 17:28:18 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux ImageMagick Version (convert -version): Version: ImageMagick 6.8.9-9 Q16 x86_64 2017-07-31…
dan9er
  • 369
  • 2
  • 17
0
votes
0 answers

swift exif informations like iOS Camera App

Is there an easy way to take a photo with exif informations like the standard iOS Camera App and save it to photo album? try? PHPhotoLibrary.shared().performChangesAndWait { let creationRequest =…
martomstom
  • 593
  • 7
  • 18
0
votes
1 answer

Trying to fix the orientation of image on client side with jQuery. [EXIF is not defined]

I am trying to detect the EXIF data (Orientation) of an image and show it without being rotated when selected. For the image preview the FileReader API is being used. I was able to fix server side orientation but for frontend I have having…
Saurabh
  • 2,655
  • 1
  • 20
  • 47
0
votes
1 answer

"Blur" photo metadata from command line?

Reposted from Superuser at another user's suggestion since this is likely to involve some (rudimentary) programming. When I'm posting photographs to social media, I often want to blur parts of the image to remove personally-identifiable-data. This…
ludinom
  • 13
  • 4
0
votes
0 answers

How to remove Thumbnail form Image using ExifInterface

I want to REMOVE the Thumbnail image after take a picture. I used the camera intent to launch the camera, passing the file Uri. I've been looking for some documentation about how to Delete the thumbnail. All small examples I've seen is just to…
AXSM
  • 1,142
  • 1
  • 12
  • 27
0
votes
2 answers

Bash script to add exif metadata date only (not time) to photos without EXIF metadata from the directory they belong to

I am trying to create a script using jhead or exiftool to help me fix the metadata issues I got due to an Apple photo export. I am trying to move away from the apple ecosystem but Apple photos didn't just use EXIF to sort photos but also import…
0
votes
1 answer

preserve exif data while resizing images in python

I am resizing an image using PIL but the EXIF info is not getting preserved. I was going through answers in stack overflow but all are very old answers and dont seem to be working now. All are using pyexiv2 but I cant find it on google. Can someone…
user46663
  • 11
  • 1
  • 3
  • 8
0
votes
1 answer

Saving ExifInterface tags throws IOException

I want to use Exif tags for images. It is very simple to read the tags and it works fine but saving not. private void saveTag(String tag, String value) { try { ExifInterface exif = new ExifInterface(imagePath); …
Andreisk
  • 33
  • 1
  • 10
0
votes
2 answers

How can I get the device orientation when a photo was taken

I've never been struggling this much with images as I am today and I'd appreciate some help :D So, thing is, I'm using the built-in camera to capture a picture and then send it to the back end to save it but the orientation is messed up for Kit kat…
pamobo0609
  • 812
  • 10
  • 21
0
votes
1 answer

ExifInterface doesn't show rotation of cam captured image

I capture image from my cam and create bitmap and pass the path to ExifInterface to determine the rotation, since the cam captured image is rotated 90 degrees all the time. But this below code always shows value 0 which corresponds to…
Aalap Patel
  • 2,058
  • 2
  • 17
  • 31
0
votes
1 answer

Using MetaDataExtractor to add EXIF back to resized image

Using an MVC application to upload an image, we need to reduce the file size before saving to the DB, but want to retain the EXIF data... The only way I can think of this is to get this from the original uploaded image and then add it to the resized…
gchq
  • 1,603
  • 2
  • 27
  • 52
0
votes
1 answer

Android: images uploaded to API loses exif data(Equipment Make)

I have created a web API project. One of the endpoint receives the image and reads the exif data. This works well when the image is uploaded from an iPhone. When the same API is used using Android devices, few images lose "Equipment Make" tag. I…
user1640256
  • 1,691
  • 7
  • 25
  • 48
0
votes
0 answers

Using WindowsAPICodePack on large amount of Video files consumes all memory

I wrote this class that gets the exif data from video files, the code works fine, but if I loop through large amount of video files I run out of memory. It doesn't seems like it release the reference to the shell file, i've tried to set it to null…
0
votes
0 answers

Uploading images: Orientation

I'm using Amazon-S3 to let users upload images. When the images are uploaded via mobile the orientation is correct on mobile. However all images uploaded via mobile device have incorrect orientation on desktops. This is due to the images EXIF data…
AndrewLeonardi
  • 3,351
  • 9
  • 47
  • 100
0
votes
0 answers

using python unable to read image modified time

We are detecting faces from the video. Subsequently we are generating images from every face detected. We need to record the image timestamp. We observed that the parameter (modified) needs to read from the image properties. I've tried with the…