New TweetPhoto for Android… Coming Soon!

New TweetPhoto for Android… Coming Soon!

Geo-Tagging Pics on the iPhone: Easy AND Hard

Geo-Tagging Pics on the iPhone: Easy AND Hard

Well, over the weekend, I made some progress with my woes of getting geo-tagged info from pictures on the iPhone.

I wound up writing my own analog version of the camera roll picker, and it came out really nice – I was able to read pics from the phone’s DCIM directories for pictures and screen grabs.

But more importantly, I was able to read the EXIF information from the photos, which the API picker strips from view.

Happy, I soon found myself to be deluded – because any image I took with the image picker controller’s camera setting also stripped EXIF information when saved to disk.

After much pain (which I’ll detail in a future post) my solution was the following:

1) Write the picture taken with a camera to disk using the Apple API. This allows the API to find out what the next picture should be named (not as easy as just looking for the highest named file – for example, what if there are no pics on the phone? You would think that the number would be IMG_0001.JPG, but the iPhone “knows” – somehow – what the last picture taken actually was. By calling the API, you get the phone to always tell you what the next file name should be.

2) Now that you have written a JPEG using the API (and really, also a Thumbnail 75×75 JPEG as well), delete that image.

3) Write your version of that image, with the appropriate geo tags from the CoreLocation services.

That is the 10,000 foot version of things. In reality, this little feat of mimicking the built in camera controllers turned out to be a royal pain in the ass.

But at the end of the day, I can take pics, store geo tags, and read geo tags from the iPhone in a way that looks just like the documented uiimagepickercontroller interfaces do.

You Can Have It In Any Color – As Long As It’s Black

You Can Have It In Any Color – As Long As It’s Black

I’ve been banging my head up against a wall today over something that should be easy.

What was I trying to do?

Well, I’ve been working this week on a new app for TweetPhoto.com that will allow you to post photos from your iPhone to the TweetPhoto web service.  In fact I wrote about it here.

I thought I had one problem licked – sending geo tag information to the API call.  As it turns out, I had only HALF the problem licked.

Initially, I was using the phone’s CoreLocation services to determine location and upload that to the API.  This is totally cool when you are using the camera.

Not so much when uploading photos taken elsewhere.  Ouch.

OK.  No problem.  I know the phone stores EXIF (exchangeable image file format) information with the JPEGS it takes, so it should be a slam dunk to grab that from th image picker control, right?

Wrong, grasshopper (with props to the recently deceased David Carradine).

The image picker STRIPS all EXIF information from photos passed in from the camera roll, so you, Mr. and / or Mrs. Developer, are screwed.

OK.  I’m a fart smeller.  I should be able to figure this out.

Hey – what if I can find where the camera roll is on the iPhone, enumerate it directly and read the image files from there?

Oh.  Heavenly Days.  That is a GREAT idea.

So, I trot out this gem, feeling like I have the problem close to being solved:

-(void)getCoords:(UIImage *)image lat:(float*)latAddr lon:(float*)lonAddr {

NSDirectoryEnumerator *enumerator  = [[NSFileManager defaultManager] enumeratorAtPath:  @”var/mobile/Media/DCIM/100APPLE”];
NSAutoreleasePool *innerPool = [[NSAutoreleasePool alloc] init];
id curObject;

*latAddr = 0;
*lonAddr = 0;

while ((curObject = [enumerator nextObject])) {
if ([[curObject pathExtension] isEqualToString:@”JPG”]) {

NSData * fileContents = [NSData dataWithContentsOfFile:[NSString stringWithFormat:@”var/mobile/Media/DCIM/100APPLE/%@”, curObject]];
UIImageView * seeMe = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
seeMe.image = [UIImage imageWithData:fileContents];

// First, we’ll get a JPEG representation of the image
EXFJpeg* jpegScanner = [[EXFJpeg alloc] init];
[jpegScanner scanImageData:fileContents];
EXFGPSLoc * lat    = [jpegScanner.exifMetaData tagValue:[NSNumber numberWithInt:EXIF_GPSLatitude]];
NSString * latRef = [jpegScanner.exifMetaData tagValue:[NSNumber numberWithInt:EXIF_GPSLatitudeRef]];
EXFGPSLoc * lon    = [jpegScanner.exifMetaData tagValue:[NSNumber numberWithInt:EXIF_GPSLongitude]];
NSString * lonRef = [jpegScanner.exifMetaData tagValue:[NSNumber numberWithInt:EXIF_GPSLongitudeRef]];

float flat = [[NSString stringWithFormat:@”%f”, lat.degrees.numerator + ((float)lat.minutes.numerator / (float)lat.minutes.denominator) / 60.0] floatValue];
float flon = [[NSString stringWithFormat:@”%f”, lon.degrees.numerator + ((float)lon.minutes.numerator / (float)lon.minutes.denominator) / 60.0] floatValue];

if ([[latRef substringToIndex:1] isEqualToString:@”S”]) {
flat = -flat;
}
if ([[lonRef substringToIndex:1] isEqualToString:@”W”]) {
flon = -flon;
}

// Does the image match???
if (seeMe == image) {
*latAddr = flat;
*lonAddr = flon;
return;
}

[jpegScanner release];
[seeMe release];
}

[innerPool release];
innerPool = [[NSAutoreleasePool alloc] init];
}
[innerPool release];
innerPool = nil;
}

NOW I’m rolling.  This works GREAT.  I can read images, extract EXIF information… feeling good.

Until I realize that I have NO way to associate the files that I am reading directly from what the image picker returns to me.  Did I just say “shit” out loud?  Because that is what I’m swimming in.

The image picker simply hands back an UIImage with some editing information.  That’s it.

OK, OK, OK.  Maybe I can compare NSData elements… or UIImage elements against what I read from disk and what the picker sends back… so far, neither of those approaches is working.

And now I’m sitting here, realizing that I can accurately describe ANY image’s geo tagging information.  I just can’t pick a SPECIFIC image from the bunch, well, at least using Apple’s APIs.

I’m coming to the sad realization that I might have to write my own bastardized version of the image picker, at least for scrolling through the camera roll.

I ain’t skeered to do it.  I just wish I didn’t have to.

But that looks like that’s exactly what I’m gonna have to do.  Damn it.