Exchangeable image file format is a standard for storing metadata in JPEG and TIFF files

learn more… | top users | synonyms

0
votes
3answers
584 views

Reading exif data with .net framework (System.Drawing.Imaging)

I am using the .net framework to read the exif metadata from a jpg file. The problem is how to convert the PropertyItem.Value (that is byte array) in a readable form such as a string. For example ...
1
vote
1answer
286 views

Add Comment To JPEG in C#

Sorry for my English. How I can add comment to Jpeg file to COM-marker section (0xFFFE)? Not a Exif comment. I try Image.SetPropertyItem() but it's save only first char of string.
1
vote
1answer
1k views

Read Geo Coordinates from EXIF data of Photos

I am a .net developer trying to learn Android. I am trying to develop a mobile application using any Android simulator from a Windows desktop. Can you please suggest such an Android simulator for ...
1
vote
1answer
966 views

PHP Convert Exif GPS data to Google friendly values

I am trying to convert the Exif longitude and latitude data into a Google friendly decimal value. I have read a lot of tutorials, but nothing seems to be working for me. I may well be doing this ...
2
votes
1answer
205 views

Resize image file retaining jpg Exif information

I would like to copy images with all the Exif image data also copied. I have a Java app that reads in a jpg into an image object, resizes it, and then writes the image object to a jpg file in ...
0
votes
1answer
399 views

PHP EXIF data not displaying

I have been trying to display some basic EXIF data from a photo with no luck. My code is below. I just need to display a few basic pieces of information. I have EXIF enabled on the server and I know ...
1
vote
0answers
263 views

Editing Exif orientation tag for my images

I want to change the Exif orientation tag in my JPEG images but without actual rotating of them, I want to do that to use them as a test case for an application I made. How I can do that in Linux, ...
3
votes
3answers
2k views

Android: Getting all existing exif data from an image

I know it's possible to get specific exif data by specifying the string tag in the ExifInterface. For example, getting the date of an image would be something like: ExifInterface exif = new ...
0
votes
1answer
125 views

Tumblr exif : wrong focal length

It seems that the tumblr's exif display the 35mm equivalent focal length instead of actual one... moreover the 35mm equivalent should be 50mm*1.6 = 80mm, and it shows 76mm. I sent them a mail, but ...
1
vote
2answers
1k views

Custom Exif Tags

I am using exiv2 to manipulate metadata in a jpeg file. But we need to write some more information related to image processing into metadata.Is is possible to create Custom Exif tags other than the ...
3
votes
2answers
358 views

iPhone camera Brightness… How is it physically measured?

I hope someone can answer this question, its been bugging me for a while now and I can't seem to get a solid answer. How exactly does the iPhone measure scene brightness (or luminance if you prefer) ...
6
votes
1answer
200 views

Is it possible to read EXIF data with R?

I need to manipulate some image files based on their EXIF data. Can something like this be done in R? I have not seen any R functions which could read EXIF data directly.
1
vote
1answer
430 views

How to write an image with EXIF data (Matlab/C++)

How can I write an image including EXIF data? I am using Matlab and C++, any solution will be greatly appreciated.. Thanks.
0
votes
2answers
52 views

how to determine whether the image is made to the device or downloaded from the outside iOS?

Actually my question in title, how to determine is image made on device or it downloaded from outside. I use ALAssetsLibrary and standard UIImagePickerController, to load images but they can return ...
0
votes
1answer
268 views

Write an array of values in the “IPTC” Image

I'm doing a class to handle the "IPTC" image and need to write some values to array as show in the example below; [2#020] => Array //SUPPLEMENTAL_CATEGORY ( [0] => SPORT [1] ...
3
votes
2answers
5k views

Write/Geotag JPEGs (EXIF data) in Android

What I want to do: Take a picture using my own PictureActivity* and add EXIF (geotags) data *: Implementing SurfaceHolder.Callbackand using Camera What is not working: Adding the EXIF GPS data What ...
3
votes
1answer
243 views

How can I force iOS safari to ignore EXIF rotation?

It seems we have an issue that images on the desktops are displaying correctly upright, but on an iPad they are being rotated to landscape. Upon further investigation it seems that the iPad looks at ...
0
votes
2answers
2k views

Reading EXIF data from JPG

I need to analyze thousands of jpeg files (by retrieving it EXIF data). It is more than 50 GB of data.I cannot read whole files because it'll take too much time. Is there any method in C# to read ...
2
votes
0answers
143 views

Thumbnail in Exif Data on iOS - Camera roll

I was wondering whether I could modify my thumbnail on camera roll? There's no way of saving it on the header before saving, there's no key that has to do with the thumbnail.
1
vote
2answers
333 views

90 degree image rotation and reset EXIF rotation

I have code to batch resize digital photos. Some photos are taken in portrait orientation. For the photos in portrait orientation, I have to rotate them. I am using the following C# code to rotate ...
0
votes
1answer
1k views

How to extract latitude/longitude from JPEG made with Android [closed]

I have images made with a camera on Android device with GPS enabled. From EXIF file format I am unable to identify where this data(long/lat) can be stored so I believe it can be stored on the image in ...
2
votes
0answers
334 views

How to check if a picture was taken by the user or not

I've recently run into some trouble in a Web app I'm developing. In this Web app I allow users to upload pictures and I need to check -to a certain extent- that the pictures they upload were taken ...
1
vote
0answers
171 views

How to write the modified exif in source image file (like JPEG, TIFF, PSD)?

I used libexif to read and modify the exif metadata in JPEG file. I am not sure on how to write/save the modified contents in the original source image file? Any ideas?? Thanks.
7
votes
10answers
704 views

Prevent imagejpeg() from saving EXIF data for images (spec. FileDateTime)

Our server is saving EXIF data to every file saved with imagejpeg(). As far as I know, this is not the default behavior (or even possible, from what I've read). But, it is occurring, and due to the ...
1
vote
3answers
2k views

Extract thumbnail from jpeg file

I'd like to extract thumbnail image from jpegs, without any external library. I mean this is not too difficult, because I need to know where the thumbnail starts, and ends in the file, and simply cut ...
3
votes
5answers
3k views

HTML/Javascript Acces EXIF data before file upload

I am trying to extract EXIF data from a image(jpeg) which has been dragged into the browser or has been selected via a html file input element. I managed to preview the image within the browser using ...
4
votes
2answers
5k views

iOS PNG Image rotated 90 degrees

In my iOS application I'm writing, I deal with PNGs because I deal with the alpha channel. For some reason, I can load a PNG into my imageView just fine, but when it comes time to either copy the ...
0
votes
1answer
759 views

Any reliable method to rotate uploaded pictures in the right direction?

Some times ago i wrote a method to read out the EXIF-data from a uploaded picture in a online-community. After i got the orientation from the picture, i rotated the file in the right direction. Only a ...
1
vote
2answers
946 views

Using iphone-exif for EXIF data

I want to use iphone-exif library for EXIF data in my proj. But i dont know if i done any mistake or not it gives error like Undefined symbols for architecture i386: "_OBJC_CLASS_$_EXFJpeg", ...
5
votes
1answer
1k views

Copy an image preserve its EXIF/IPTC data with PHP imageCreateFromJpeg?

I having some problems with an image that has EXIF/IPTC data stored in it. When I use imageCreateFromJpeg (to rotate/crop or etc) the newly stored file doesn't preserve the EXIF/IPTC data. My ...
2
votes
1answer
469 views

metadata editing in bash linux for multimedia files(not images) in linux [closed]

I've searched across stackoverflow, and I've been on google and also duckduckgo and no one seems to have a nice way for me to do this. The only tool that seems to maybe have worked was Exiftool which ...
0
votes
1answer
1k views

With python, How to read the “date created” of a file?

I am writing a short script in python that will scan through a list of folders for image files and then re-organize them. One of the optional way of organizing them i wish to have is by the date they ...
2
votes
1answer
336 views

How to get the date/time at which an image was taken using CCR EXIF?

using CCR EXIF http://delphihaven.wordpress.com/ccr-exif/ how can I get the time at which an image was taken? (I am open to using something else, so long as I can use Delphi, but everyone says that ...
0
votes
2answers
119 views

How to fire following command from vc++?

I want to change image's exif data. For that I've used Exiv2.exe. Now I want to fire command from my program which is written in vc++ 08. For modify GPS data of image, exive command is exiv2 -M"set ...
2
votes
0answers
441 views

Issues extracting exif data for exif 2.3 using PHP Version 5.2.9

PHP Version 5.2.9 I was wondering if anyone has experienced issues (and possibly found a resolution) with extracting GPS or even just all EXIF data using PHP's exif_read_data() for EXIF 2.3. My ...
11
votes
3answers
671 views

Compute hash of only the core image data (excluding metadata) for an image

I'm writing a script to calculate the MD5 sum of an image excluding the EXIF tag. In order to do this accurately, I need to know where the EXIF tag is located in the file (beginning, middle, end) so ...
1
vote
1answer
347 views

Seeking free EXIF component

I have 100+ GB of photos going back 25 years. They are arranged in a directory tree by category, with nested sub-directories. I want to a search for all photos taken in a given month, say April, in ...
0
votes
1answer
353 views

iPhone EXIF data will not read from documents folder

I am creating an Image Processing app that does two image analysis functions. One is to read the RGB data of the image and the other is to read the EXIF data. I am taking a photo with the front camera ...
1
vote
2answers
646 views

Read EXIF data from img in JavaScript (cross-domain friendly)

I recently started building a bookmarklet that displays the EXIF data of any image on a website. I chose to use Nihilogic's binary.js and exif.js libraries. For images hosted on the same domain as the ...
1
vote
0answers
303 views

EXIF metadata removal in python

I am using Django-media-tree to import images into a site image library. I am hitting a bug in PIL where some unknown EXIF data on the image is causing a non-handled exception in the generation of ...
3
votes
2answers
732 views

Write EXIF into JPG with PHP

For a couple of days I'm trying to write (or update) EXIF information (geotag, latitude and longitude) in a JPG image using PHP. After consulting many sites without success I think the best option is ...
0
votes
2answers
283 views

How to read and modify latitude and longitude data of jpg file in vc++

I'm working in vc++ 08. I need to read EXIF data of particular JPG file and modify it. In that mostly I need to read Latitude and Longitude data of JPG file and modify it. I searched for library that ...
0
votes
1answer
385 views

EXIF Propertyitem for Tags?

I'm using the ExifTools code to read and update the EXIF for JPEGs in a VB.NET project I am developing. So far I've been successful with doing what I need to but I'm having difficulty with the last ...
1
vote
2answers
684 views

How to get EXIF keywords using mini_magick in a Rails app?

I am attempting to pull the EXIF information for images that have values for the EXIF "keywords" attribute. I have successfully read EXIF information using mini_magick by simply opening an image and ...
0
votes
1answer
164 views

Exif does not update location for images

I am trying to read exif tags to determine where a picture was clicked, in Android. This is the code: ExifInterface exif = new ExifInterface(path); float[] latlong = new float[2]; ...
1
vote
1answer
128 views

EXIF fraction calculation

I am modifying jpeg EXIF data. Some data requires to be defined as a fractions. Here, I have two problems: 1.) Which is the correct fraction "format"? For instance when I have an exposure time ...
3
votes
3answers
2k views

How to inject exif metadata into an image, without copying the image?

I have previously asked this question: How to write exif metadata to an image. I now have found a way to inject metadata. However, it results in a copy of the image into memory. With large images, ...
0
votes
2answers
161 views

characters appear with question marks when inside html tag attributes

My application allows users to upload an image with "embedded" captions. These captions are taken from the exif data: foreach (exif_read_data('image.jpg', 0, true) as $key => $section) { ...
17
votes
6answers
9k views

Get Exif data from UIImage - UIImagePickerController

How can we get Exif information from UIImage selected from UIImagePickerController? I had done much R&D for this and got many replies but still failed to implement this. I had gone through this ...
0
votes
1answer
699 views

Android ExifInterface TAG_GPS_LATITUDE denom values

I am trying to use geo-tagging with my own camera application. What I am doing is getting my current geo-location as decimal value (Ex. Latitude = 6.8447375) and want to convert it in to DMS format in ...

1 3 4 5 6 7 11