So here\'s where I\'ve made it so far. I am using a UIImage captured from the camera and can crop the center square when in landscape. For some reason this doesn\'t transl
I was able to accomplish it with something like this:
UIImage *thisImage = [[UIImage alloc] initWithContentsOfFile:imagePath];
double x = (thisImage.size.width )/2.0;
double y = (thisImage.size.height)/2.0;
mediaImage = [self imageByCropping:thisImage toRect:CGRectMake(x, y, 60, 60)];
[thisImage release];