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

learn more… | top users | synonyms

0
votes
1answer
13 views

Code for exif data of an image

Is there any code for getting all exif data of an image? I want all possible data that can be extraxted from an image file(which the user will upload on my webpage) like bitrate ,file owner and ...
0
votes
1answer
13 views

iOS - Retrieve EXIF UserComment from UIImage

I have some important metadata information in the UserComment field of the EXIF header of a JPEG image. I am attempting to retrieve it with NSData* jpgData = UIImageJPEGRepresentation(uiImage, 1.0); ...
0
votes
1answer
43 views

C# image save dots

I don't know that i'm doing wrong, I have been looking around the web, and tried a lot of different things but nothing works, when i try to save the image there is a lot of gray dots the result can ...
0
votes
1answer
15 views

Orientation of Image captured using Camera instance behaves differently for different Android devices

The orientation of the image captured is causing problems across devices in Android. In some devices the orientation of the image captured is not recorded in the EXIF while in other devices it is ...
2
votes
2answers
93 views

Altering the content of an array in PHP

I have a php script in which some code fetches the exif data from a photo into a variable as follows: $exif_data = get_EXIF_JPEG( $filename ); NOTE: The function 'get_EXIF_JPEG( $filename )' is ...
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 ...
0
votes
1answer
16 views

Writing orignal image with exif to Document Directory folder from ALAsset object

I want to save alasset imagearray directly to document directory with EXIF i tried PNG conversion, jpeg conversion nothing worked It just creating new image either with jpg or png (loss of exif) I ...
0
votes
0answers
19 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
20 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? ...
1
vote
1answer
114 views

How to write GPS coordinates to EXIF data on Android

I'm trying to write a geotagging app where the user selects an image form the photo gallery, and then that image gets the current GPS coordinates written to it through its EXIF file. So far I am able ...
7
votes
2answers
71 views

IPTC Data Management Library

I've written a fairly extensive script which manages images. PHP imaging libraries strip meta data by default. So embedded data (like keywords, descriptions, author, etc) are gone. I've written a ...
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 ...
2
votes
1answer
59 views

How do you write the degrees symbol (°) into EXIF on iOS?

I'm struggling to write a string into a JPG's Exif: user comments section, that contains the degress symbol (°). But it constantly writes out a '?' character in its place. ex. NSString *xmlData = ...
0
votes
1answer
34 views

How do I use Python's PIL library to get EXIF data from a photo starting with a hyperlink to the photo?

import requests from PIL import Image from PIL.ExifTags import TAGS def get_exif(fn): ret = {} i = Image.open(fn) info = i._getexif() for tag, value in info.items(): decoded ...
0
votes
0answers
21 views

Mass migration of EXIF GPS data (a.k.a. Escape from iPhoto) [migrated]

I am trying to move my library of photos (over 12000) out of iPhoto for use in Adobe Lightroom and would like to include the GPS data I've added to the photos using iPhoto's in-app feature (This data ...
10
votes
2answers
343 views

Image upload from iphone strips exif data

I've built a website which allows image uploading and once an image is uploaded , some specific information about the photo is displayed. Uploading pictures from computers works just fine , the ...
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 ...
3
votes
4answers
87 views

Sort images by exif data in php

I'm new to php and I'm trying to figure out how to sort images by exif creation date. The code below is the one from this tutorial I followed: Simple Php Gallery Pagination I just modified a little ...
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 ...
-2
votes
0answers
30 views

Will Android camera function provided the original system add GPS data to the image taken by the camera? [closed]

Will Android camera function provided the original system add GPS data automatically to the image taken by the camera?
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
115 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 ...
1
vote
1answer
53 views

Save RGBA image with metadata in iOS

I am working on an iOS application that does some image processing. The result of the processing is a grey-scale image. When the process is finished, I want to save the original RGB image together ...
-2
votes
1answer
110 views

Uploaded Photo with iPad is rotate [closed]

I need a PHP script to rotate my uploaded images on server with iPad. I have a problem with orientation of image and exif data. I try maybe a 10 solutions and don't have a solution. When the "button" ...
1
vote
1answer
90 views

Writing arbitrary metadata to EXIF in Android

This question originated here: Writing EXIF metadata to images in Android . Can we use EXIF to write arbitrary metadata, i.e. other than those specified in the ExifInterface documentation (like ...
1
vote
1answer
70 views

Geo tagging and Google Drive search

I have the following situation: The pictures that my app stores on Google Drive have GPS position written in the EXIF data. See here. I'd like to use the position later for additional indexing. Maybe ...
1
vote
1answer
32 views

How to get FNumber and ISOSpeedRatings from iPhone cam in realtime

I need to get camera parameters (exif data) such as FNumber, ISOSpeedRatings in realtime without taking real photos. Is there any way to do that?
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
2answers
50 views

Camera image rotation issue

I am facing a very strange problem here. When i click an image in portrait mode and upload it and then again fetch it it is displayed rotated 90 degrees counter clock wise. But when i see it in camera ...
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
2answers
61 views

Find if an image has EXIF or not

Is it possible to determine whether an image contains exif data or not? I tried using pyexiv2 as follows: import pyexiv2 as pex pex.metadata("test.jpg") metadata.read() print metadata.exif_keys Now ...
0
votes
2answers
90 views

Script cannot read file from directory

I have a script which extracts Exif data from a photo stored in a given directory and then displays the image with the exif information on a web page. Here's the part of the script which retrieves ...
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. ...
1
vote
2answers
86 views

Javascript code refactoring

I have the following code which is working var exif = function(exifObject) { alert(exifObject.Orientation); } $(this).fileExif(exif); Problem is, I need the alerted value after ...
0
votes
1answer
49 views

Validate Image with exif_imagetype but still able to upload non image files

I am not sure if my exif_imagetype is coded wrong. It send the email just fine with photos attached. But when I try to attach non image files it will still allow me to do so and send the email with ...
0
votes
1answer
86 views

How do I read the exif data from an image being attached by paperclip?

I'm trying to read the exif data from jpeg images that I upload with paperclip using the exifr gem and save focal length, etc to attributes but I can't seem to do it. I'm a rails beginner and would be ...
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
45 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
2answers
120 views

Writing EXIF XPKEYWORDS with Sanselan

I've been researching ways to write tags to my images similar to how Windows Live Photo Gallery works. I've played with several different libraries (metadata-extractor,jhead,jheader,sanselan) but have ...
0
votes
1answer
186 views

How to automatically rotate images with exif orientation data with php

I've created an upload script which also creates a thumbnail which works fine, but I've now encountered a problem. When I upload some images the exif orientation data automatically rotates the image ...
0
votes
1answer
97 views

Android Create Custom Exif attributes for an image file

currently i am trying to add custom exif tag/data to an image file that is in photo album. I am able to modify the existing tags defined in ExifInterface class However, i want to store custom data, ...
0
votes
2answers
222 views

How to detect that Android Camera Geo tagging setting is on/off (GPS Info in the EXIF data)

I'm trying to find out if there's a way to detect the "geotag" or "store-location" setting of the camera on an Android device. I don't mean the general location access setting which I'm very familiar ...
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
1answer
71 views

Add custom XMP Tags

I am looking for a tool or a way (.NET) to add custom XMP fields. Also, can someone explain the purpose of needing to know if the XMP tag is a textfield, textarea or a select? Thanks in advanced ...
0
votes
0answers
67 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 ...

1 2 3 4 5 11