Tagged Questions
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 ...
0
votes
2answers
47 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
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
89 views
Writing real custom data into Exif/Meta Data in iPhone images
I have trawled the net for (at least confirmation of) some code examples that shows if it is possible to add custom information to an image taken from the camera with the UIImagePickerController on ...
0
votes
2answers
531 views
iOS saving photo to Camera Roll does not preserve EXIF/GPS metadata
I know a UIImage can be saved into Camera Roll with UIImageWriteToSavedPhotosAlbum, but this approach strips all metadata from the original file (EXIF, GPS data, etc). Is there any way to save the ...
0
votes
0answers
134 views
Preserve EXIF + rotate Image in ios using ALAssetRepresentation
Hi I am having trouble uploading a photo from CameraRoll, preserving EXIF and at the same time rotate the image so up is up and down is down...
So far I have managed to upload image with EXIF intact ...
1
vote
0answers
99 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 ...
3
votes
1answer
595 views
Updating an in-memory iOS UIImage with EXIF/geotag information
I am trying to update a UIImage with geotag information. I looked at Saving Geotag info with photo on iOS4.1, which is where I found a reference to the NSMutableDDictionary+ImageMetadata category. ...
0
votes
1answer
956 views
How to get exif information from ALAsset?
I need to get exif information from selected asset and to display part of it on the screen.
6
votes
2answers
3k 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;
...
0
votes
1answer
920 views
Using CGImageProperties to get EXIF properties
I want to be able to add a text comment to the metadata of a JPEG and be able to read it back from within an iphone app.
I thought this would be fairly simple as ios4 contains support for EXIF info. ...
3
votes
3answers
2k 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 ...
1
vote
2answers
292 views
For image Metadata, what tag allows for the largest character limit?
For example the Exif standard has a "User Comment" tag that has a limit of 256 characters I believe.
If I want to add lets say a story into metadata, what would be my best bet for several megabytes ...
1
vote
0answers
978 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 = ...
0
votes
2answers
982 views
Write UIImage to Saved photo albums with EXIF
I encounter the following problem when using UIImageWriteToSavedPhotoAlbum and the EXIF data is lost.
UIImage * image = [[UIImage alloc] initWithData:recevedData];
UIImageWriteToSavedPhotosAlbum ...
0
votes
2answers
677 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
3answers
2k views
Exif and iPhone files
Im using a library for extracting EXIF data from google code.
I assume with iPhone OS 3 that you can use UIImagepicker to do it.
I just want to be able to extract the f-Stop, Shutter Speed and ISO ...
