Tagged Questions

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

learn more… | top users | synonyms

32
votes
9answers
16k views

Exif manipulation library for python

I'm looking for good exif (Exchangeable image file format) manipulation library for python. I prefer flexibility (e.g., ability to retrieve providers' proprietary tags) than processing speed. What ...
27
votes
8answers
24k views

How to get the EXIF data from a file using C#

I would like to write a small program in C# which goes through my jpeg photos and, for example, sorts them into dated folders (using MY dating conventions, dammit...). Does anyone know a relatively ...
26
votes
13answers
13k views

UIImagePickerController and extracting EXIF data from existing photos

It's well known that UIImagePickerController doesn't return the metadata of the photo after selection. However, a couple of apps in the app store (Mobile Fotos, PixelPipe) seem to be able to read the ...
13
votes
7answers
9k views

What is the best EXIF library for .Net?

I am looking for simple straightforward solution for accessing EXIF information of jpeg images in .Net. Does anybody has experience with this?
12
votes
5answers
4k views

Resize image in Python without losing EXIF data

I need to resize jpg images with Python without losing the original image's EXIF data (metadata about date taken, camera model etc.). All google searches about python and images point to the PIL ...
11
votes
7answers
9k views

How do I add exif data to an image?

On our site, we get a large amount of photos uploaded from various sources. In order to keep the file sizes down, we strip all exif data from the source using mogrify: mogrify -strip image.jpg ...
8
votes
3answers
3k views

Problem setting exif data for an image

I'm using the new ImageIO framework in iOS 4.1. I successfully retrieve the exif metadata using the following: CFDictionaryRef metadataDict = CMGetAttachment(sampleBuffer, ...
8
votes
6answers
5k views

PHP extract GPS EXIF data

I would like to extract the GPS EXIF tag from pictures using php. I'm using the exif_read_data() that returns a array of all tags + data : GPS.GPSLatitudeRef: N GPS.GPSLatitude:Array ( [0] => 46/1 ...
7
votes
3answers
2k views

How do you get the country/state/region/city/state/zip/postal from GPS coordinates?

I have GPS coordinates on all of my photos. I want to include tags/IPTC data for the city, state, zip, etc.. However all I have is the GPS coordinates. How can I take these and get meaningful info in ...
7
votes
3answers
2k views

How to use PIL to resize and apply rotation EXIF information to the file?

I am trying to use Python to resize picture. With my camera, files are all written is landscape way. The exif information handle a tag to ask the image viewer to rotate in a way or another. Since ...
7
votes
3answers
5k views

.NET C# library for lossless Exif rewriting?

I have found various code and libraries for editing Exif. But they are only lossless when the image width and height is multiple of 16. I am looking for a library (or even a way to do it myself) to ...
6
votes
3answers
2k views

Getting GPS data from an image's EXIF in C#

I am developing a system that allows for an image to be uploaded to a server using ASP.NET C#. I am processing the image and all is working great. I have managed to find a method that reads the Date ...
6
votes
1answer
309 views

How to modify EXIF metadata for JPEG images using Coldfusion?

I am using Coldfusion to view images stored in the file system and I can READ the EXIF metadata of JPEGs, but I'd like to know if it is possible to modify this information and re-save the image.
6
votes
3answers
2k views

How to remove EXIF data without recompressing the JPEG?

I want to remove the EXIF information (including thumbnail, metadata, camera info... everything!) from JPEG files, but I don't want to recompress it, as recompressing the JPEG will degrade the ...
5
votes
1answer
415 views

how to change image file rotation status without loading it into memory

Someone told me some image file like jpg just use some bits to control the rotation status. Is there any way to change this status without loading the picture file to main memory
4
votes
2answers
992 views

How to attach EXIF metadata to a serialized Bitmap in Android?

In Android, when decoding a Bitmap from a photo on the phone, the EXIF data in the original gets lost. I am sending this Bitmap to my server via a socket and would like to re-attach the missing EXIF ...
4
votes
2answers
654 views

How to stop PHP iMagick auto-rotating images based on EXIF 'orientation' data

Currently working with PHP and iMagick to develop a poster printing Web application. This is the example image I am using to test upload/image editing features of the application: The image ...
4
votes
2answers
801 views

Read and write EXIF data with Silverlight

I'd like to find a way to read AND write exif data of an image with Silverlight. I couldn't find any sample code or library doing this, so I don't know if it's even possible? Thanks Update : I need ...
4
votes
2answers
4k views

How can I read the EXIF data from an image taken with an Apple iPhone

How can I read the EXIF data from an image taken with an Apple iPhone using C#? I need the GPS related data. PS: I know how to read EXIF except image taken with an Apple iPhone
4
votes
4answers
649 views

Calculating EXIF exposure time as a fraction (Delphi)

I am trying to display EXIF exposure time as a fraction of seconds but I am not getting expected result, probably a small mistake. I have found two routines that do the calculation but both bring ...
4
votes
4answers
1k views

Storing EXIF information in Database

What's the best way to store EXIF data from photos in a Database (MySQL in my case). This is for a photo sharing site. What are the most important Tags, and what are discardable?
4
votes
4answers
814 views

How do you place EXIF tags into a JPG, having the raw jpeg buffer in C++?

I am having a bit of a problem. I get a RAW char* buffer from a camera and I need to add this tags before I can save it to disk. Writing the file to disk and reading it back again is not an option, ...
3
votes
1answer
279 views

Images taken with ACTION_IMAGE_CAPTURE always returns 1 for ExifInterface.TAG_ORIENTATION on some newer devices

I had the orientation issue when working with ACTION_IMAGE_CAPTURE activity. I have used the TAG_ORIENTATION so that I would rotate the picture accordingly. But now we found that on some newer devices ...
3
votes
1answer
105 views

Rails paperclip image save

When using paperclip, if i try to enter the url like so (in a create function after a picture saves image = Magick::ImageList.new('public' + @picture.photo.url) i get the error ...
3
votes
1answer
2k views

How to save GPS coordinates in exif data on Android?

I am writing GPS coordinates to my JPEG image, and the coordinates are correct (as demonstrated by my logcat output) but it appears that it's being corrupted somehow. Reading the exif data results in ...
3
votes
1answer
1k views

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 ...
3
votes
4answers
2k views

Remove EXIF data from JPG using PHP

Is there any way to remove the EXIF data from a JPG using PHP? I have heard of PEL, but I'm hoping there's a simpler way. I am uploading images that will be displayed online and would like the EXIF ...
3
votes
1answer
1k views

Writing EXIF metadata to images in Android

I want to store some metadata in images. My camera application gives me a bitmap, which I store in the storage (MediaStore) device. In addition to this, I want to add a few tags to the picture in its ...
3
votes
2answers
188 views

Nil pointer returned for [exifData tagValue:]

I'm trying to read EXIF data from pictures taken with the apple camera's application, containning EXIF informations. I use iphone-exif library available at http://code.google.com/p/iphone-exif/. My ...
3
votes
9answers
1k views

How to get the EXIF or meta-data from images?

I need a really good library or a command-line software that can be used to extract Exif data from images. No specific programming language, except the library or the software has to work really well. ...
3
votes
1answer
349 views

How can I write an Exif header without recompressing the JPEG, in .NET?

I have a JPEG image that I want to set an Exif header to (particularly, Author). In .NET, I can do this relatively easy using GetPropertyItem and SetPropertyItem, but in order for that change to be ...
3
votes
3answers
1k views

How can I extract EXIF data using PerlMagick?

I'm currently using Perl Magick http://www.imagemagick.org/script/perl-magick.php, the perl interface to Image Magick http://www.imagemagick.org, to process & convert photos that our site users ...
3
votes
4answers
1k views

How to know or calculate depth of field of a photo from EXIF tags?

I want to know the depth of field of a photo, preferably in cm or m. I know that we can know the camera setting by reading the EXIF tags, but is there a tag directly telling us the depth of field? Or ...
3
votes
4answers
3k views

How to read embed thumbnail from jpeg images?

I am writing a thumbnail viewer in c++. I first make use of EXIF information to retrive an image's thumbnail, but the thumbnail in the EXIF is bad, with black bands. So I want to get the jpeg's ...
3
votes
3answers
401 views

EXIF key names explanations

Does anyone know of a good explanation of EXIF key names? I am writing a photo organizer and want to get as much information as possible out of the photo as I can. However, the EXIF key names are ...
3
votes
1answer
758 views

Resize an image with .NET without losing EXIF data

What is the best way to resize images using .NET, without losing the EXIF data? I'm okay with using .NET 2 System.Drawing.* classes, WPF classes, or open-source libraries. The only easy way I found ...
3
votes
2answers
1k views

Which EXIF tag to store keyword/tag for a photo?

I am developing a photo gallery which will read/write EXIF tags. I will put photo title in the EXIF tag DocumentName and description in EXIF tag ImageDescription. I also plan to use the geo-tags. But ...
3
votes
2answers
2k views

How to save an EXIF format image file in .NET 3.5

I want to save an image in EXIF format using System.Drawing.Image.Save or a similar method in a C# application using .NET framework v3.5. The MSDN documentation lists EXIF as an option for ...
3
votes
4answers
2k views

How do I retrieve the properties of a photo taken on a digital camera using .NET?

Preferably in VB.Net, but c# is fine, how can I access the extra properties added to a file by my digital camera, like "Date Picture Taken", "Shutter Speed" or "Camera Model"?
2
votes
1answer
74 views

add/pass (exif) thumbnail to CGImageDestinationRef

On CGImageDestinationRef Apple's reference it mentions that It can contain thumbnail images as well as properties for each image. The part with the properties works nice, by setting the properties ...
2
votes
1answer
136 views

Using ALAssetsLibrary and ALAsset take out Image as NSData

I wish to extract the image using ALAssetsLibrary and ALAsset directly in the form of a NSData object. Using a NSURL I take out the image in the following manner. NSURL *referenceURL =newURL; ...
2
votes
1answer
57 views

Read EXIF data of an Image in Blackberry

How to read EXIF data of an Image in a blackberry device using code. I have used ExifInterface in android. Is there something similar in blackberry. Thanks
2
votes
2answers
116 views

exif_read_data - Incorrect APP1 Exif Identifier Code

I have problem with some of my photos when i want to read EXIF data. My code below: $exif_date = exif_read_data($file_path, 'IFD0'); With some images i get warrning: Message: ...
2
votes
1answer
166 views

Get EXIF tags in Windows Phone 7

I would like to get all the EXIF tags of an image I took in Windows Phone 7. I have tried using ExifLib, but can't seem to get it right. In my event handler for CaptureImageAvailable I have the ...
2
votes
1answer
27 views

Rails Pictures sort date

In Exifr for rails (im using this fork https://github.com/picuous/exifr ) how do i sort out the pictures according to date this is how to get the date EXIFR::JPEG.new('IMG_6841.JPG').date_time ...
2
votes
3answers
394 views

UIImageOrientation incorrect for left/right from loaded UIImage?

I am loading JPGs that are flagged with arbitrary EXIF orientation data (one of 8 orientations). I downloaded the eight sample image files from here (linked from this blog post). Image 8 represents ...
2
votes
1answer
123 views

Is there any reliable .NET Image Metadata Library?

I was searching for some image metadata handling library with following requirements: support EXIF, IPTC and XMP support fast reading of metadata tags (e.g. for batch loading of image thumbnails ...
2
votes
1answer
238 views

Removing GPS EXIF data with PHP

This morning I was woken up by a call from a client running a Concrete5 website, saying that any images uploaded to their website suddenly stopped working. After an hour or two of experimentation and ...
2
votes
1answer
523 views

How to save photo with EXIF(GPS) AND orientation on iPhone?

I'm using writeImageToSavedPhotosAlbum:metadata:completionBlock: to save images to the camera roll (GPS data is in dictionary passed to metadata). However pictures are misoriented (as I flip the ...
2
votes
0answers
204 views

How does one add custom metadata tags to an image on the iPhone?

I tried adding custom entries in the exif dictionaries I received from an image. This didn't work. I'm assuming this is due to the fact exif is a standard that is already defined. Basically I am ...

1 2 3 4 5 6