views:

53

answers:

1

I'd like to be able to take a photo from the iPhone's camera, select a polygon within that photo, crop the photo to match, and then fit the resulting image to the screen.

What user interface element would you suggest for me to start doing this?

I'm a Java programmer and just getting started with the iPhone, so I'm not sure what to use.

+2  A: 

You should start by looking at sample code from Apple for UIImagePickerController to start getting the image. When you are comfortable with that you can start thinking about how to crop the image.

twerdster
Hi, thanks for that. Should I use something based on OpenGL or just like that next to process image?
Eugenev
Also if you're comfortable, would you share some book for java/as3 developer to better understand cocoa/objective-c please? :)
Eugenev
Just read Programming in Objective-C 2.0.
Kinderchocolate
@Eugenev - I'd recommend looking at the getting-started resources pointed out in this question, because there's a lot out there to help you out: http://stackoverflow.com/questions/1939/how-to-articles-for-iphone-development-objective-c
Brad Larson
thank you very much, and thank you for your time.
Eugenev