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.
0
votes
1answer
49 views
How can I seed the iOS simulator photo albums?
I've got a suite of KIF tests for our app, but one part that I can't work out how to cover is where we use UIImagePickerControllers. Obviously I can't check the camera, but I'd like to write a ...
0
votes
0answers
44 views
Rotating camera view on iOS
I've read few questions here on stack and I'm in a dead-end. I want to have device (iPhone/iPad) camera as a background, to one of my ViewControllers. I'm using Storyboard and ...
1
vote
3answers
69 views
can't show picking image from photo library
Im using image picker for choose photos from photo library. When i click the button it displays photo library. But when i click particular image it dismiss modalView and image won't load to view.
...
0
votes
0answers
44 views
Black space by generating the preview in iPhone camera
I'm currently using "UIImagePickerController" to take pictures from the camera.
Need to remove the black edge that comes down when in the preview of the photo, anyone can help me?
Link IMG sample ...
1
vote
2answers
43 views
selecting image for multiple image view from cam or library
I have 3 Image views on my view controller (Purpose Before ,During, After) .
i need to select images for each of view respectively .
the didicated method for this task is :
-(void) ...
1
vote
1answer
34 views
picked image saving causes slowing
I picked an image from iphone by the follwing code:
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
[self ...
0
votes
1answer
115 views
imagePickerController didFinishPickingMediaWithInfo giving me a weird image
I wrote some code to add a photo taken with the camera and add it to a NSMutableArray of UIImages.
- (void)imagePickerController:(UIImagePickerController *)picker ...
0
votes
0answers
17 views
Getting two popovers using UIPopoverController
I press a button and it displays the images saved on the camera roll. The problem is it displays two different popover controllers, one in the right place and the other not. Here is the code for the ...
1
vote
2answers
128 views
Select image to use as UIViewController background throughout my app
When my iPhone app runs for the first time it asks you to select an image from your iPhone library to use as the background throughout your app. Here is the relevant code:
/*
* Responds when an ...
2
votes
1answer
47 views
UIModalViewController Hidden behind a UIViewController
I am working with a sliding menu, like you would see in the Facebook or Path app.
In the rear menu I am wanting to allow the user to add an image by using the camera or photo library.
The issue I am ...
2
votes
1answer
99 views
xcode throwing “DetailViewController *” to prarameter of incompatible type warning when trying to implement camera functionality
So I'm trying to implement a camera functionality for my ObjectiveC app. I have a MasterViewController that has a tableview. The DetailViewController handles viewing details of cells and adding new ...
1
vote
0answers
54 views
How to get NSURL leading to gallery image?
in my app im using UIImagePickerController to pick an image. i want to get a NSURL leading to that image.
in "didFinishPickingImage" method i tried using "UIImagePickerControllerReferenceURL" and ...
0
votes
0answers
19 views
UIImagePickerController and custom save location
UIImagePickerController saves the captured media to Camera Roll. If I want to use UIImagePickerController and saved the media to my application's location instead of Camera Roll what should be done? ...
1
vote
1answer
40 views
Multiple UIImageViews with UIImagePicker
I am brand new to using UIImagePicker so bear with me here. Basically, I have two UIButtons defined that access the camera roll and once an image is chosen, the image appears in my UIImageView. The ...
0
votes
1answer
112 views
Does iOS simulator have the ability to simulate the device's camera?
Just to make sure I have all the code right, here is my header file:
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController ...
0
votes
1answer
56 views
UIImagePicker Adjusting Focus Observer?
Is there a way to find out if the camera is currently focusing with UIImagePicker? Similar to the way the adjustingFocus observer works with AVFoundation.
I'm currently using AVFoundation, but I ...
0
votes
1answer
43 views
how to change location from temp file to hd on an iphone progrramming
i want to take a video in high resolution in my app.so far when I called the function [uiimagepickerobject startVideoCapture]
When recording reaches 20 sec it gets memory warning and app crashes. I ...
0
votes
1answer
35 views
Adding a view after presenting ImagePicker [closed]
I have been trying to add progress view after Image is taken in UIImagePickerController. I know that a view can be added in its property overlayView but a new view only shows before presenting picker ...
1
vote
1answer
100 views
Can we scroll iPhone Photo Library to Bottom Programmatically
In my app I need to select the image from the Photo Library and I have hundreds of photos in that. The issue is latest photos captured by Camera, saves at the bottom of the Photo Library and thus, I ...
4
votes
2answers
370 views
camera overlay picture
edit 3
Good news and bad news. The good news is that in the Connections Inspector by disconnecting the overlay UIToolbar and connecting the UIImageview, I see theKing, but then -- the bad news -- I ...
2
votes
0answers
77 views
Determine if image picker media type is video [closed]
I've seen various methods for checking whether the returned media type in -imagePickerController:didFinishPickingMediaWithInfo: is video. For example, my way:
- ...
0
votes
1answer
22 views
Adding UIImagePickerController onto an already open UIPopoverController
I have a popover which contains a tableview, once a row has been selected I want to then push on a UIImagePickerController.
According to the documents on the Apple website, I can only present this in ...
8
votes
6answers
291 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 = ...
1
vote
2answers
191 views
iOS Camera Customization: How to implement Grid Lines?
I am able to use the flash feature, access the photo gallery, and use the rear/front camera.
I would like to implement grid lines that display when the user is taking a photo.
Any ideas?
1
vote
3answers
134 views
Sending UIImage from UIImagePickerController to PHP server using ASIFormDataRequest
In a current project, I have implemented an UITableViewController that collects certain data and send it to the backend server by the users request.
This all works fine and dandy.. however, I have ...
0
votes
1answer
112 views
how to show UIImagePickerControllerSourceTypeCamera in Landscape instead of Potrait
I am working on iPad App, There when we click the right bar button i am giving an action like below:
-(IBAction)camerabuttonAction:(id)sender
{
UIImagePickerController *picker = ...
3
votes
1answer
67 views
Choose video from photo gallery with certain duration and attached location only
I am working on an app which allow user to choose video from photo library using UIImagePickerController. I want to have some filter on the video e.g If selected video duration is > 5 mins video will ...
2
votes
2answers
294 views
Customized photo picker view
I want to use photo picker view in customized form, such as showing a rectangle in screen to focus on specified area of the picture. However, UIImagePickerController can only offer a normal photo ...
0
votes
0answers
50 views
showImagePicker and ARC
edit 0
- (void)viewDidLoad
{
[super viewDidLoad];
self.overlayViewController = [[BSsetupOverlayViewController alloc] initWithNibName:@"BSsetupOverlayViewController" bundle:nil] ;
// as a ...
1
vote
1answer
43 views
FileExistsAtPath returning NO on movie from UIImagePickerController
I saved a movie file's path from UIImagePickerController, and I know it exists because I can play it on the device. An NSLog on the string containing the movie file path returns this:
...
0
votes
0answers
30 views
How to find out whether the device supports a particular resolution type?
In the Apple docs,
UIImagePickerControllerQualityType looks like this:
enum {
UIImagePickerControllerQualityTypeHigh = 0,
UIImagePickerControllerQualityTypeMedium = 1, // ...
0
votes
0answers
46 views
Moving subviews of cameraOverlayView on photo preview
Adding a custom UIView to the cameraOverlayView of the UIImagePickerController was fairly straight-forward. How can I let users drag the cameraOverlayView's subviews around the screen?
For example ...
0
votes
0answers
33 views
How to reuse camera after take a photo?
I have a simple question: how to use (show) again a camera after take a photo?
I use UIImagePickeController and when the photo was taken (Use button was tapped) we go to delegate:
...
6
votes
4answers
218 views
UIImagePickerView in Camera mode shows all black on dismissViewController on iPad
I have an application which uses a UIImagePickerView to allow the user to either take a picture with their camera or select one from the camera roll using the UIImagePickerView.
After getting a ...
0
votes
2answers
347 views
Custom ios camera shutter not opening?
I have tried UIImagePickerController in custom camera,when application going out or when i am going call the safari , that time camera shutter not open,i have used following code.
...
0
votes
1answer
62 views
To store the images picked by UIImagePicker in iOS
I am working in iOS native development using Objective C. I want to implement camera
functionality in my application. I implemented camera using UIImagePickerController. I
am able to take the ...
0
votes
1answer
46 views
For some reason when uploading an image to Facebook after taking a picture it rotates image by 90 degrees
The following code is the method that I use to take picture with and then send to Facebook using share kit. Problem is this causes images to be sent with a 90 degree rotation.The reason I know this is ...
0
votes
1answer
155 views
UIImage rotates when resizing only camera pictures, but works fine when screenshot pictures
I have been using Trent's UIImage bundle to resize the image to fit my UIImage dimensions 320 * 320. When I use any picture from a screenshot or the web, vertical and horizontal are fine. But when I ...
0
votes
0answers
24 views
Add a compass on UIImagePickerController
I want to add the compass on UIImagePickerController using overlay. I have tried some example but while adding the overlay on UIImagePickerController its not working.
In CompassController I have ...
12
votes
2answers
643 views
UIImagePickerController record video with landscape orientation
How can we force UIImagePickerController controller to record video only in landscape mode?
I know that this class should be used for portrait recording, but I need to have it in landscape.
Have ...
0
votes
0answers
39 views
Open Camera Roll's photo with QLPreviewController
Is there a way to open "local files" (from camera roll) with QLPreviewController? These files are choosen previously with a UIImagePickerController. Thanks in advance!
1
vote
1answer
58 views
iOS TapGesture hide Touch on the same View
I want to do somethings on UIImagePickerController, I detected the view (named A) contains all the images in library. When I choose an image, I want to draw somethings on it.
I can get the image ...
1
vote
1answer
76 views
UIImagePicker slideshow of images on selection
Like the Photos App shows, all albums > all photos in a particular album > single photo view,
even I need a similar kind of a view. I have used UIImagePickerController and easily go to the second ...
0
votes
4answers
199 views
set type of an image captured using iPhone camera
If we capture a picture using iPhone camera, image will be saved in JPEG format by default.
I would like to save the image captured in other formats like PNG. Is it possible?
Is it possible to do ...
0
votes
0answers
304 views
How to implement iPhone default camera flip effect?
I had added an overlay view with a flip button on ZBar reader, I want to make a flip like what default iPhone camera app did (first, dim the view; then flip it; finally switch the camera to front)
...
1
vote
1answer
47 views
Cannot change cameraFlashMode for UIImagePickerController
I have a button on my custom camera overlay that invokes this method:
- (void) changeFlash:(id)sender
{
//UIImagePickerControllerCameraFlashModeOff = -1,
...
1
vote
1answer
86 views
Fails to load image from UIImagePickerController on next ViewController after segue
im trying to load a picture selected on UIImagePickerController on the next view controller. i did some search on similar threads and found a few that helped me set it up, but the image does not ...
0
votes
1answer
77 views
How to get Imageview Tag in imagePickerController to Update the correct ImageView
I have 6 Imageviews set with tags. In one tap on the imageview, i call the UIActionSheet to show button "Take Pic" & "select Pic". All this works fine.
in the imagePickerController where i finally ...
1
vote
3answers
122 views
photo album like controls
I am making a camera app a where user can make videos and take pictures. What I am doing is I am saving all the movies and pictures in my apps document directory. I don't want to automatically save ...
0
votes
3answers
359 views
How to crop the captured image before saving it in gallery in IOS [duplicate]
I am working on camera app. I am capturing an image by using UIImagePickerController.After that before saving it in gallery I want to crop the image and need to save the cropped image in gallery.
I ...




