Questions related to the iOS UIImagePickerController class (and the associated UIImagePickerControllerDelegate protocol), which provides system-supplied user interfaces for taking pictures and movies on iOS devices, and for choosing saved images and movies.
488
votes
6answers
93k views
UIImagePickerController, UIImage, Memory and More? [closed]
I've noticed that there are many questions about how to handle UIImage objects, especially in conjunction with UIImagePickerController and then displaying it in a view (usually a UIImageView). Here is ...
36
votes
14answers
23k views
UIImagePickerController and extracting EXIF data from existing photos
It's well known that UIImagePickerController doesn't return the metadata of the photo after selection. However, a couple of apps in the app store (Mobile Fotos, PixelPipe) seem to be able to read the ...
25
votes
3answers
16k views
Resizing UIimages pulled from the Camera also ROTATES the UIimage?
I am getting UIimages from the camera and assigning them to UIImageViews to be displayed. When I do this the camera gives me a 1200 x 1600 pixel image which I then assign to a UIImageView in my ...
16
votes
6answers
14k views
UIImagePickerController in Landscape
I have been searching for an answer to this, but cannot come up with anything. Apparently, iPhone SDK 3.0 made it possible that UIImagePickerController can be displayed in landscape mode - but I am ...
17
votes
5answers
14k views
didFinishPickingMediaWithInfo return nil photo
I am working to capture an image that is returned in 4.0 using
- (void)imagePickerController:(UIImagePickerController *)picker
didFinishPickingMediaWithInfo:(NSDictionary *)info
{
[[picker ...
3
votes
4answers
8k views
Select Multiple Images (UIImagePickerController or Photos.app Share UI)
In iPhone OS 3.0, Apple added the ability to share multiple pictures at once using the "Share" button and selecting multiple images (where a checkmark is used).
I'd love to have a ...
13
votes
7answers
16k views
Getting “Using two-stage rotation animation” warning with UIImagePickerController
I wrote simple code to test UIImagePickerController:
@implementation ProfileEditViewController
- (void)viewDidLoad {
[super viewDidLoad];
photoTaker_ = [[UIImagePickerController alloc] init];
...
4
votes
2answers
13k views
UIImage Saving image with file name on the iPhone
How can I save an image (like using UIImageWriteToSavedPhotosAlbum() method) with a filename of my choice to the private/var folder?
35
votes
7answers
11k views
iPhone, “More than maximum 5 filtered album lists trying to register. This will fail.” Error
When I try to read an image from the photo library I get the error, "More than maximum 5 filtered album lists trying to register. This will fail." The image is not read.
Any idea how to fix this?
8
votes
2answers
9k views
How to use UIImagePickerController in iPad?
Hi i am working on a universal application (iPhone/iPad). one feature is that i have to select a photo from album and show it on UIImageView.
Now problem is that it is working good on iPhone but when ...
3
votes
1answer
2k views
Access metadata (exif tags) of image taken by UIImagePickerController - iOS/iPhone
Is it possible to access the metadata of an image captured by UIImagePickerController in iOS? I understand this can be done with AssetLibrary framework for images captured by the camera application ...
31
votes
4answers
18k views
iPhone: Camera Preview Overlay
how do I add an overlay (UIImageView) to the camera preview and
handle touches on this?
My previous attempts to do this (e.g. use UIImagePickerController and add the image as a subview) have failed.
...
7
votes
6answers
10k views
Hide/Show iPhone Camera Iris/Shutter animation
I am not able to Hide the iphone Camera shutter opening animation for my app.
I am using UIImagePickerController to access iphone camera and using my own overlay controllers.
Is there a way to remove ...
11
votes
2answers
5k views
iPhone - UIImagePickerControllerDelegate inheritance
I have added a UIImagePickerController to a UIViewController. I have assigned the UIImagePickerControllerDelegate to that UIViewController.
When I try to do
myPicker.delegate = self;
Xcode gifts ...
15
votes
6answers
8k views
iOS 5 GM: <Error>: More than maximum 5 filtered album lists trying to register. This will fail
I know this thread existed before, but was closed as only appearing in iOS5 beta 6.
By now I have the Golden Master of iOS 5 on my phone and that error still appears.
This is happening when I create ...
5
votes
3answers
7k views
How can i get the name of image picked through photo library in iphone?
i am picking an image from photo library in iphone application. How will i retrieve the actual image name.
the code is here
in .h class
UIImageView * imageView;
UIButton * choosePhotoBtn;
in .m ...
4
votes
2answers
5k views
How to get image path from photo library and how to retrieve the image from photo library in iphone?
I'm new to iphone. In my small application, how to get image path from photo library. I use this following code to getting images and placed in imageview.
-(IBAction) selectimage
{
...
4
votes
2answers
3k views
recored video using UIImagePickerController
I'm developing an iPhone app that records video. I create a UIImagePickerController, limit it to video recording then programatically ask the camera to startVideoCapture. Unfortunatly when I run the ...
0
votes
1answer
954 views
Upload picture selected using UIImagePickerController
I'm trying to upload the picture selected using UIImagePickerController. The UIImagePickerController gives UIImage object that I can display in a view, but it doesn't give a path (may be it does and ...
11
votes
5answers
12k views
camera overlay view - just for preview?
I've noticed that in OS 3.1 you can add an overlay view to the image picker with
cameraOverlayView
However, I've also noticed that adding a view via this method also displays the view for the ...
3
votes
3answers
6k views
iPhone: Get camera preview
I'd like to get the image that is being displayed on the UIImagePickerController when user uses the camera. And when I get I want to process the image and display instead of regular camera view.
But ...
7
votes
3answers
7k views
Set dimensions for UIImagePickerController “move and scale” cropbox
How does the "move and scale screen" determine dimensions for its cropbox?
Basically I would like to set a fixed width and height for the "CropRect" and let the user move and scale his image to fit ...
3
votes
2answers
8k views
UIImageWriteToSavedPhotosAlbum working… sometimes
UIImageWriteToSavedPhotosAlbum is only working sometimes. Sometimes it works, sometimes it doesn't, exact same function.
- (void)imagePickerController:(UIImagePickerController *)picker ...
6
votes
3answers
2k views
UIImagepickercontroller: is it possible to change the sort order of the images in camera roll?
Basically the app im working on would be a lot less of a pain if users didn't have to scroll to the very bottom of their camera roll to get their most recent photos, I want the most recent at the top, ...
6
votes
5answers
15k views
iOS SDK - How to get the status bar back when using UIImagePickerController?
As soon as I add a UIImagePickerController sub view to my view the status bar disappears and I can't get it back. Is there any way to keep the status bar visible?
UIImagePickerController *imagePicker ...
3
votes
5answers
2k views
UIImagePickerController Memory Leak
I am seeing a huge memory leak when using UIImagePickerController in my iPhone app. I am using standard code from the apple documents to implement the control:
UIImagePickerController* ...
4
votes
3answers
3k views
Select videos using UIImagePickerController in 2G/3G
I am facing a problem where-in I cannot select videos from the photo album in iPhone 2G/3G device. The default photos application does show videos and is capable of playing them, which in turn means ...
2
votes
2answers
3k views
How do I pick and record video using UIImagePickerController for iPhone?
I want to pick a video from iPhone for my application for uploading on the Web.
I am using the UIImagePickerController for it.
For for opening picker
UIImagePickerController *imagePicker = ...
2
votes
2answers
3k views
Help debugging iPhone app - EXC_BAD_ACCESS
I've developed my application using my 3G device to test with. Upon giving this to a friend to test, he's noticed that it crashes..I've had a look at the crash log, but it's not much use except for ...
5
votes
7answers
10k views
takepicture() vs UIGetScreenImage()
I'm trying to build a QRCodeReader for a project our research group is working on for the iPhone. After much research I found the program called QuickMark. This program scans automatically for ...
4
votes
3answers
3k views
iPhone Get UIImagePickerController Lat/Lng
I'm using the UIImagePickerController to take a photo and then upload the photo to a WCF Service. Along with the image, I also need to send to the latitude and longitude of the photo.
How can I get ...
2
votes
1answer
2k views
iOS 4.3 changed transformation on UIImagePickerController's camera overlay view
After testing my App on iOS 4.3 I noticed that the camera overlay of my UIImagePickerController has an added transformation that stretched the content extremely. Pre iOS 4.3 everything shows up ...
0
votes
2answers
2k views
Take Photo's Automatically - iPhone
I'm trying to perform the task of taking a picture, but triggered by code instead of relying on the touching of the camera button in UIImagePickerController. Can this be done? I want to take a 10 ...
8
votes
3answers
12k views
Objective C: How to fix aspect ratio of image (and not change to fit imageview frame)
I am using the UIImagePickerController to select images for my app. However I am facing some challenges with regards to maintaining aspect ratio of the selected images
For example,
I have a raw ...
22
votes
6answers
39k views
Received memory warning. Level=1 when showing a UIImagePickerController
This is driving me crazy!!!
I'm getting a "Received memory warning. Level=1" whenever I attempt to show a UIImagePickerController with a sourceType = UIImagePickerControllerSourceTypeCamera.
Here is ...
18
votes
5answers
9k views
Presenting a modal view controller immediately after dismissing another
I'm dismissing a modal view controller and then immediately presenting another one, but the latter never happens. Here's the code:
[self dismissModalViewControllerAnimated:YES];
...
11
votes
1answer
10k views
iPhone SDK - How to disable the picture preview in UIImagePickerController?
Is there any way to disable the image preview after taking a picture with the UIImagePickerController? I want to dismiss the ImagePicker as soon as the user pressed the shutter release button.
6
votes
4answers
8k views
How do I get a thumbnail or saveable path from UIImagePickerController to use for a UIImageView?
Could somebody please explain or show some sample code of how I can use get a thumbnail to be put into a UIImageView after the user selects a photo with UIImagePickerController?
Let's say I want to ...
2
votes
4answers
5k views
iPhone - Mirroring back a picture taken from the front camera
When using the front camera of the iPhone 4 to take a picture, the taken picture is mirrored compared with what you see on the iPhone screen. How may I restore the "on screen" view of the UIImage (not ...
5
votes
1answer
2k views
Camera differences between UIImagePickerController and AVCaptureSession on iPhone
I'm trying to build a replacement for UIImagePickerController, using AVCaptureSession with AVCaptureDeviceInput and AVCaptureStillImageOutput, as input/output respectively.
To preview the camera ...
6
votes
3answers
8k views
How do I reduce Image quality/size in iPhone objective-c?
I have an app that lets the user take a picture with his/her iPhone and use it as a background image for the app. I use UIImagePickerController to let the user take a picture and set the background ...
20
votes
3answers
2k views
How to know if iPhone camera is ready to take picture?
When [camera takePicture] is called before the camera is ready, it spits out this message:
UIImagePickerController: ignoring request to take picture; camera is not yet ready.
How can I know when it ...
12
votes
1answer
7k views
how to change the UIImagePickerController crop frame
when opening working with an UIImagePickerController and setting allowsImageEditing = YES; there is a default cropping frame that is 320x320. In my case, I would like to setup that cropping frame to ...
7
votes
2answers
5k views
Avoid Video Compression when Selecting Movie with UIImagePickerController?
I'm using UIImagePickerController to allow my user to select a video from the asset library.
When the user selects the "Choose" button on the second screen, the view displays a progress bar and a ...
2
votes
5answers
10k views
how to know is it iphone or ipad?
i want to know the user uses the iphone or ipad,if the user uses the iphone i want to open the camera,if he uses the ipad or runs in simulator i want to open the library. how it is possible?
how to ...
1
vote
1answer
3k views
Creating our own crop rect in camera overlay
Before placing my question, I want to state my basic requirement which is to change the frame for crop rect in UIImagePickerController for a camera.
I just realized that it is not possible to change ...
0
votes
2answers
2k views
Uploading an image to a server through imagepicker doesnt work (need solution)
As a follow up from this question Uploading images to server doesn't work (There you can find my php file) I realized why it isn't working. But I don't know the solution. As you can see in the ...
9
votes
7answers
352 views
Not able to show the Image in proper format from camera in landscape mode
I am working on iPad App in Ios6, There when we click the right bar button i am giving an action like below:
-(IBAction)camerabuttonAction:(id)sender
{
UIImagePickerController *picker = ...
3
votes
2answers
3k views
uiimagepickercontroller - get the name of the image selected from photo library
I am trying to upload the image from my iPhone/iPod touch to my online repository, I have successfully picked the image from Photo Album but i am facing one problem i want to know the name of the ...
1
vote
3answers
885 views
CIDetector and UIImagePickerController
I'm trying to implement the built-in iOS 5 face detection API. I'm using an instance of UIImagePickerController to allow the user to take a photo and then I'm trying to use CIDetector to detect facial ...