Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to allow the user to take 16x9 aspect ratio images to look like they are nice HD photos. I'm using the cameraViewOverlay to overlay black bars on both ends, but when the image is taken, how do I crop the top and bottom without resizing or changing the scale of the image?

Thanks.

share|improve this question

2 Answers

up vote 1 down vote accepted

There are various posts around on how to scale/crop a UIImage you get back from the camera, like this one.

It's a little trickier than you'd expect, because camera images are rotated, so you have to think about rotations even if you're just cropping.

share|improve this answer
4  
I wouldn't put this one as the correct answer. Since the question is about cropping only. The solution you point at in this answer is a solution by yourself, and also is specific to scale AND crop. I've not found a solution to just crop an image taken from the camera yet. – Rigo Vides Jul 13 '11 at 23:02
@RigoVides can you please post the solution? – Odelya Jan 21 at 7:02

you can add "picker.imageEditing=YES" to your code when you take the image. Then you have to set the imageView proprieties in the interface builder: Image View Attributes -> View -> Mode -> Aspect fit, or other option as you wish

share|improve this answer
I think you mean "picker.allowsEditing = YES" – TomSwift Apr 2 '12 at 21:06
Which image are you talking about? The selected one from uiimagepicker controller? – Odelya Jan 21 at 7:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.