Exchangeable image file format is a standard for storing metadata in JPEG and TIFF files
0
votes
1answer
38 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
14 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
91 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 ...
0
votes
1answer
12 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 ...
1
vote
0answers
17 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
0answers
17 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
15 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 ...
1
vote
1answer
568 views
Modified EXIF data doesn't save properly
After countless attempts and sieving through every SO answer + google result, it baffles me that working with EXIF on iOS is so frustrating.
Below is working code with its results.
[[self ...
3
votes
4answers
79 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 ...
0
votes
0answers
29 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 ...
64
votes
12answers
33k 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 ...
0
votes
2answers
217 views
Open source library for reading latitude and longitude from JPEG / EXIF in Java?
I want to extract the latitude and longitude from the EXIF information in jpeg images. I am looking for a Java-based open source library.
7
votes
2answers
65 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 ...
10
votes
2answers
320 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 ...
17
votes
7answers
13k 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 ...
0
votes
2answers
361 views
“Date Taken” not showing up in Image PropertyItems while it shows in file details (file properties) in Windows Explorer
I'm a little bit surprised and puzzled. I try to read the property items from an image. Particularly, I'm interested in the "Date Taken". I have written a procedure that does exactly that. More or ...
0
votes
0answers
31 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
96 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 ...
0
votes
0answers
43 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
56 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
26 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 ...
2
votes
1answer
3k views
iphone image ALAsset problem
First of all sorry for the crappy formatting. I dont know how to format the code here.I am having a problem with retrieving the image from the photo library. I have pasted my code Please help me. I am ...
0
votes
0answers
50 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
0answers
115 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 ...
0
votes
1answer
90 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, ...
7
votes
2answers
743 views
Android Exif data in JPEG file
Write custom data as a Exif data in a JPEG image file using ExifInterface in Android
Would like to write/add custom tags/exif data in JPEG file like name, age, etc... Right now i am able to write ...
1
vote
0answers
37 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
27 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?
3
votes
2answers
4k views
How to remove or edit Exif from mp4 video?
I recorded a Full HD video with Samsung Galaxy II, when I uploaded it to YouTube I found that it turned to 90 degrees like Portrait layout 1080x1920 NOT 1920x1080.
I found the cause of the problem:
...
2
votes
1answer
952 views
Questions about EXIF in hexadecimal form
I am trying to understand the EXIF header portion of a jpeg file (in hex) and how to understand it so I can extract data, specifically GPS information. For better or worse, I am using VB.Net 2008 ...
0
votes
0answers
78 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 ...
34
votes
8answers
42k 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 ...
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 ...
0
votes
0answers
101 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
48 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
52 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
312 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 ...
5
votes
1answer
3k 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 ...
1
vote
2answers
286 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 ...
-2
votes
1answer
98 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" ...
0
votes
2answers
678 views
iphone reduce size(in bytes)of image with exif data
I have image which I have accessed from the image gallery. I want to store this image in the database and later re size it and POST it to the server. Can any please tell me if I will loose the EXIF ...
1
vote
5answers
2k views
Getting exposure values from camera on iPhone OS 4.0
Exposure values from camera can be acquired when you take picture (without saving it to SavedPhotos). A light meter application on iPhone does this, probably by using some private API.
That ...
4
votes
6answers
5k 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 ...
1
vote
1answer
67 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
82 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 ...
6
votes
2answers
3k views
How to write exif metadata to an image (not the camera roll, just a UIImage or JPEG)
I am aware of how to save metadata using ALAssets. But, I want to save an image, or upload it somewhere, with exif intact. I have exif data as an NSDictionary. But how can I inject it properly into a ...
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
2answers
317 views
Can't open image in Android
I'm developing an application in android and I'm having a problem to show some imagens downloaded from an http server.
Here's the code for the download:
HttpClient httpClient = new ...
2
votes
2answers
4k views
Write UIImage along with metadata (EXIF, GPS, TIFF) in iPhone's Photo library
I am developing one project. The requirements are like that, User will open the cam thru application and on the capture of Image, some data will be appended to the captured image's metadata.
I ...







