Exchangeable image file format is a standard for storing metadata in JPEG and TIFF files
3
votes
0answers
244 views
iOS: Preserve JFIF/EXIF data when saving to camera roll
Original Problem
I am trying to save an image into the camera roll while preserving all the original EXIF/JFIF data. I'd like the image as saved to the camera roll to be identical to the original ...
3
votes
0answers
117 views
Unable to write gps location to exif
I have an app that gets the location of the user using LocationManager and tries to write that data into the Exif Data of an image. For some reason the value never gets written and the location ...
2
votes
0answers
235 views
UIImagePickerControllerMediaMetadata is storing different data compared to the built in iOS camera
I am using UIImagePickerController to capture an image from camera. The app, which I am developing requires to read the metadata of the image just captured, especially its gps information.
I am ...
2
votes
0answers
93 views
Adding EXIF tag 'ImageUniqueID' to an image
I've had some great success adding EXIF data to an images captured from the UIImagePickerControl...Mostly following the examples from other questions. i.e.
UIImagePickerController and extracting ...
2
votes
0answers
241 views
Changing the User Comment EXIF tag (0x9286)
I'm developing an android application and I want to read and update the User Comment EXIF tag.
I just can't find that tag in the ExifInterface.java class. Can I create a custom tag say ...
2
votes
0answers
189 views
PHP - corrupt exif data error with Fulifilm photos
PHP version 5.3.10
In short, I can't get all the EXIF data out of my photos - it says they are corrupt - but another PHP can get all the data out, so I'm sure it's possible, but I don't know how. Now ...
2
votes
0answers
138 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.
2
votes
0answers
321 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 ...
2
votes
0answers
421 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 ...
2
votes
0answers
245 views
Using EXIFTool to create sRGB images?
I would like to ask a question about sRGB, ICC profiles, and exiftool.
I've found that you can use exiftool to embed sRGB profiles into images. Does this mean I can create a picture in Paint.NET and ...
1
vote
0answers
20 views
Generate thumbnail from remote jpeg without downloading
I want to load the EXIF thumbnail preview stored in a jpeg image located on a remote server, without having to download the whole image. The server does not support resuming.
Is this possible? In ...
1
vote
0answers
38 views
Writing EXIF data using python3 in Windows
I have a set (hundreds) of JPEG files that I need to equip (WRITE access) with EXIF data. For that I would like to use python3 so I can batch process the files and incorporate it in my data flow.
I ...
1
vote
0answers
96 views
Reading and Writing all JPEG metadata in Silverlight
I've developed a Silverlight application that needs to compress JPEG images on the client. I've been using a library called FJCore to achieve this goal.
One of the biggest issues I'm encountering, ...
1
vote
0answers
112 views
How do I use the WIC API to read/write custom EXIF data?
I have gone through the documentation at:
http://msdn.microsoft.com/en-us/library/windows/desktop/ee719799(v=vs.85).aspx
As context, I am trying to encode in the JPEG-XR format and I want to emulate ...
1
vote
0answers
135 views
How can I automaticly create folders and sort files into them based on EXIF data?
I'm looking for a way to take a single folder containing thousands of images and sort all those images automatically into folders based on each images's EXIF "date taken" data.
Is there a script or ...
1
vote
0answers
101 views
Edit Exif Data on UIImage before posting to backend
Problem
I'm posting images to a server, but when I pull them back to the device, they turn sideways.
My thoughts are the Exif data attached to the image are telling the server how to orient the ...
1
vote
0answers
91 views
What is a proper way to check if StorageFile's ImageProperties has DateTaken property?
I would like to know if a file has ImageProperties.DateTaken property.
Documentation says:
If the date property isn't set, this value defaults to 0 which can be
translated into misleading dates ...
1
vote
0answers
259 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, ...
1
vote
0answers
162 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.
1
vote
0answers
290 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 ...
1
vote
0answers
468 views
Phonegap: get location tag from image in library/album
navigator.camera.getPicture is working reasonably well for me as is navigator.geolocation.getCurrentPosition
If my picture source type is in 0,2 though:
Camera.PictureSourceType = {
PHOTOLIBRARY ...
1
vote
0answers
306 views
EXIF Image data and Windows Explorer
I have a problem with EXIF image properties and Windows Explorer
I've done a fair bit of trawling google for an answer on this but to no avail. I have written some C# code to get/set EXIF properties ...
1
vote
0answers
489 views
Get EXIF data from Image with ImageIO
in my app i want to read image metadata, from the ImagePickerController.
I tried this like this:
NSURL* imgURL = (NSURL *)[info valueForKey:UIImagePickerControllerReferenceURL];
NSLog(@"%@", imgURL);
...
1
vote
0answers
538 views
EXIF Title Tag in PHP with with exif_read_data()
I have some struggles to get the "Title" tag from a jpg file with PHP. I guess I'm looking through the wrong EXIF Group.
I'm using following code
$exif = exif_read_data( $image['temp_name'], 0, ...
1
vote
0answers
458 views
How to apply additional EXIF fields to JPEGs in Android
I'm writing an app where I'd like to add the direction of the camera view to the image taken. I've seen the android.media.ExifInterface class, but it looks limited to only a few fields.
The exif ...
1
vote
0answers
255 views
keep exif information after adjust size of UIImage
I am trying resize a UIImage and keep the original EXIF metadata.
However, it looks like no straight forward method available now.
I tried CGImageSourceCopyPropertiesAtIndex to get original EXIF ...
1
vote
0answers
458 views
exif data in NSData image representation
I'm trying to create a PhoneGap plugin which uses AFFoundation to capture photos and return the image as base64 encoded string. This all works fine but the exif data seems to be missing from the ...
1
vote
0answers
987 views
Add EXIF metadata to a UIImage
I need to add EXIF metadata to a UIImage taken either from the camera or an album, then save the image to an album. How can I do this?
To take the photo I use:
picker.sourceType = ...
1
vote
0answers
781 views
ExifInterface problem on Droid
I'm using Android's Native Camera app to take a picture and save it on the sdcard.
Intent cameraintent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
File file = new ...
0
votes
0answers
20 views
Trying to Find a Windows “XP Comment” Editor
The "Comments" Field that can be displayed in Windows Explorer is sometimes referred to as the "XP Comment", as opposed to EXIF and other Metadata Comment fields
The whole subject seems to me to be ...
0
votes
0answers
21 views
phonegap getPicture base64 Exif
When I call
navigator.camera.getPicture(onSuccessCapturePhoto, onFail, { quality: 50, destinationType: Camera.DestinationType.DATA_URL, correctOrientation: true });
, the image has no more EXIF ...
0
votes
0answers
31 views
How to add EXIF data into a jpeg which initially doesn't have it?
I want to add EXIF data into a JPG which initially doesn't have it. (I'm using GD to resize an original JPG which have EXIF data, so the resized JPG doesn't have any EXIF data.)
I'm trying to use PEL ...
0
votes
0answers
35 views
How can I change image dpi to 300 using exif
I have a jpeg image.I want to change the dpi of this image to 300.
Is this possible with exif installed on webserver.
If yes ,How can I do this?
...
0
votes
0answers
47 views
how to go along with this code android
This is the code to extract tags from jpeg.i take picture by calling camera intent. after clicking photo i should send it to below code for extracting information. How to send the clicked photo as ...
0
votes
0answers
55 views
Add EXIF data to an image and save
I am trying to add Latitude and Longitude data to an image and then save it. I take a picture using an intent and then call a method to edit the EXIF data. I have tried this and it does not work and ...
0
votes
0answers
86 views
Getting NoMethodError, undefined method for nil:NilClass , need an option to ignore nil value
My problem is I have added img location to my existing pin with
after_post_process :get_image_loc
and now I get
undefined method `[]' for nil:NilClass
It works fine when the uploaded image gas ...
0
votes
0answers
116 views
exif when uploading pictures with php on a mobile device stripping GPS header?
I have a script to upload photos to a website written in PHP. When I upload a picture using Safari on my IPhone, some of the header appears to be stripped when I check the exif data. When I take the ...
0
votes
0answers
52 views
Reading EXIF Data from Data URI using Javascript
I understand that there is a way to read EXIF data from binary string of an image, but is there a way to also read it from Data URI? I actually have access to binary string of an image in certain ...
0
votes
0answers
48 views
Converting EXIF tags/values into a more human readable format
I am currently parsing EXIF data of user uploaded photographs client side in javascript.
The returned data is in the form of a simple javascript object complete with keys/values that comply with the ...
0
votes
0answers
27 views
extract GPS information from an exif file
I have this textual file associated with an image file
-Make
NIKON CORPORATION
-Model
NIKON D70
-Orientation
Horizontal (normal)
-X-Resolution
300
-Y-Resolution
...
0
votes
0answers
35 views
Exif data from UIImage
I am using the following code to extract exif info from UIImage.
NSData *srcImageData = UIImageJPEGRepresentation(inImage, 0.0);
CGDataProviderRef provider = ...
0
votes
0answers
39 views
Orientation Value is set wrong after upload from iphone device
I am uploading an image taken from camera in iphone. i am converting that image into base64 format while uploading. i am logging the info dictionary, just to check the information of the image taken. ...
0
votes
0answers
65 views
Why image rotate and cropping code result more rotated in iOS
I just make this Rotate, Crop Button.
Rotate works good but crop code works than different orientation before Crop code run.
How change orientation value or orientation value remove?
thank you.
- ...
0
votes
0answers
46 views
ExifTool: Change photo dates according to directory structure
Using ExifTool (in Ubuntu) to change the dates of many photos contained in directories like so:
2012
2012-01
2012-01-23
2012-05
2012-05-12
2012-05-15
2013
2013-02
2013-02-21
Etc... ...
0
votes
0answers
94 views
Reading EXIF Metadata from an image
Before using a tool/program to extract image metadata I will have manually added Captions to the UserComments Metadata of several images. I then want to use fancybox (or similar jQuery plugin) to pull ...
0
votes
0answers
64 views
Blob URL returning 404 on XMLHttpRequest
I am using a drag n drop file upload plugin.
After the drop, the preview images have a src blob url similar to:
src="blob:http%3A//mysite.com/bff3fcfb-0661-4d75-93e3-d57d9e570553"
I NEED to be able ...
0
votes
0answers
68 views
EXIF makernote tag not present in ExifInterface
The EXIF tag used for user/custom data in JPEG is the 'MAKERNOTE' tag. Does anybody know why it's not included in the ExifInterface API?
Is this an oversight by Google or did they exclude this on ...
0
votes
0answers
70 views
Get iPhone heading during UIImagePickerController taking image
I am in a situation where i want to get iPhone's heading (Direction angle) while UIImagePickerController is taking picture.
I have seen EXIF details but there is no angle information returned by ...
0
votes
0answers
156 views
jquery.exif.js - Parsing exif data from canvas.toDataURL() - access-control-error
Ok here's the scoop:
ASP.NET application.
I am using the plugin - jquery.exif.js
As well as the plugin - jQuery-File-Upload
When I load a file into the jQueryFileUploader I then need to get its ...
0
votes
0answers
23 views
EXIF Info APP sections - jpg
Are exif data info (like GPS coords) always stored in APP1 section ? ( so i could just look for APP1 section )


