Tagged Questions
0
votes
0answers
10 views
Why is the crop rectangle for existing pictures not square, but newly taken pictures yes?
I have this situation where I want all my images to be upload in a square aspect ratio. When the user is presented the option to add a picture, he can either take it live, or select one from the photo ...
1
vote
0answers
47 views
How to align the live screen camera at the center of the view in iPhone?
If there is a black bar at the bottom of the screen(like in the pic that i've pasted below), we have to re-scale the live screen camera overlay to fit the aspect ratio of iPhone. And even if I change ...
0
votes
1answer
48 views
UIImagePickerController and a small custom preview
I want to use an UIImagePickerController non-modally, with a small square preview. However, I get a big black bar at the bottom of the preview, which I can't get rid of (see the screenshot). Why is it ...
0
votes
0answers
36 views
Record Video With mute option and along with label on ios [closed]
In IOS 6, record a video in LandscapeRight orientation. while recording display label on video screen and record those labels also in video. Video must contain the recovered video and recored labels.
...
0
votes
0answers
10 views
Camera / Video in ladscape mode in ios6 and above?
I am developing an app in portrait mode for iPhone, But my requirement is to open only camera in landscape mode in app rest in portrait.How can i achieve this ? Please help me out.
Thanks
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
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
113 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
93 views
iPad iOS 6.1 UIPopover ImagePicker crashes when pressing the bar button twice
I have created a popover for the image picker on the iPad. This function works. But if you press the UIBarButton twice the application crashes.
@property (retain) UIPopoverController ...
3
votes
3answers
230 views
Non-modal UIImagePickerController, tap to focus doesn't work
I'm using a UIImagePickerController in a non-modal setting, like this:
UIImagePickerController *_imagePickerVC = // init the VC with the main camera as the source
[_mainCameraPreviewContainer ...
2
votes
3answers
432 views
Application tried to present modally an active controller : UIImagePickerController
I'm struggle at this for 2 days and believe that this is the moment I should call for help. After I search SOF for a while, none of any answer could solve my problem. Here are my application ...
In ...
0
votes
0answers
50 views
ignore audio in UIImagePickerController while capturing video
I am developing an app in which I have to capture a video but ignore audio. I am using UIImagePickerController my code is
`
self.delegate = self;
self.showsCameraControls=NO;
...
1
vote
1answer
206 views
Dismissing a presented UINavigationController in iOS6
In my root UIViewController I present a UINavigationController. The UINavigationController ultimately pushes another view (let's call it MyViewController). How can I dismiss the entire ...
-1
votes
2answers
139 views
extending UIImagePicker controller doesn't help to prevent rotation in io6
My application is set in info.plist to support only portrait mode.
However, the UIImagePickerController, rotates when the user rotates the screen to landscape.
Since in io6 the method ...
0
votes
0answers
68 views
Center camera preview in UIImagePickerController when camera controls are off?
I am using custom camera controls in an overlay, so I set showsCameraControls = NO. Now there is an empty black space where that toolbar used to be.
Is there an Apple-approved way to offset the ...
2
votes
2answers
1k views
UIImagePickerController in iOS 6 doesn't work properly
I'm having a very strange behavior:
in iOS 5 I present UIImagePickerController in this way:
imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera;
imagePicker.modalPresentationStyle = ...
1
vote
1answer
183 views
Using UIImagePicker in iPad with Landscape only on iOS 6
I am making an iPad app that only supports landscape orientations, and in that app i am calling the photo Library using the following code
UIImagePickerController *imagePicker = ...
0
votes
1answer
318 views
Record video from front facing camera in iphone [duplicate]
Possible Duplicate:
Accessing the front facing camera. iPhone/iPod 4
How to record the video from front facing camera of the device in iPhone.
To use the front facing camera,We use this:
...
0
votes
2answers
218 views
UIImagePickerController live preview orientation wrong
I have a landscape iPad app and I present a UIImagePickerController with sourcetype UIImagePickerControllerSourceTypeCamera to my active view controller modally. However, the live preview is in the ...
0
votes
1answer
118 views
Screen capture with three embedded controllers where one is a UIImagePicker in video mode?
I need to perform a live screen capture of the entire iPhone screen. The screen has three container views embedded. One of these containers is a UIImagePickerController. Everything on the screen ...
1
vote
1answer
83 views
Dynamically repeatedly open camera view
Currently, I am using this code to open camera & video view for capturing image & video:
- (BOOL) startCameraControllerFromViewController: (UIViewController*) controller
...
0
votes
1answer
137 views
UIImagePickerController iphone5 Orientation Landscapemode
i sub classed UIImagePickerController and implemented it into @implementation
- (BOOL)shouldAutorotate
its works fine but the problem is:
while capturing in landscape mode the display appears in ...
0
votes
0answers
89 views
Writing real custom data into Exif/Meta Data in iPhone images
I have trawled the net for (at least confirmation of) some code examples that shows if it is possible to add custom information to an image taken from the camera with the UIImagePickerController on ...
0
votes
0answers
131 views
Huge Memory Leak UIImagePickerController
I've seen other threads but mine seems to be even more dramatic. I am using UIImagePickerController to allow users to choose or take their own pictures.
Here's some code:
if ...
1
vote
0answers
106 views
How to resolve the orientation of ImagePicker control view in landscap mode and whole application in portrait mode?
I have tried almost all the answers during last two days provided by Google and SO but no luck :(
What I want is my whole application is in portrait mode only.
And it working fine in ios 6+. The ...
0
votes
0answers
59 views
Complete Camera Based iOS App Starting Point
So I have begun to design and think out the next application I want to build, and it is entirely built on the concept of opening the app, creating albums, and then taking pictures to be added to the ...
6
votes
1answer
1k views
CGAffineTransformInvert: singular matrix in UIImagePickerController with showsCameraControls = NO
I tried this twice with two different apps and I get the same thing. I have a set up a UIImagePIckerController instance as follows:
- (IBAction)addImage:(UIBarButtonItem *)sender {
if ...
1
vote
1answer
160 views
Open camera view upon app Startup (iOS6)
what im trying to do is to have the app open up with the camera as the first screen. It isn't working and i don't know what im missing. If anyone can fill me in that would be wonderful... Thanks.
...
1
vote
1answer
176 views
Accessing the camera from the app itself
I am trying out a simple camera app for practice. Was following these examples: iOS 6 App
and iOS 4 App
My code looks like this:
ViewController.h
#import <UIKit/UIKit.h>
@interface ...
1
vote
0answers
186 views
How to pick image from Photos Library in iPad using iOS6?
I have tried to implement the code for picking image from photos library in iPad using iOS6 but it is not working. The code i tried is shown below.
UIImagePickerController ...
1
vote
1answer
280 views
Choosing From Library using UIImagePickerControllerSourceTypeSavedPhotosAlbum
I would like to have choosing images or videos as one option when taking photos or videos. When i seem to click the option, the app crashes. I am using ios 6 and it seems that apple has included some ...
2
votes
1answer
143 views
Saving to/getting JPEG from user gallery without recompression
I am trying to find a way to read and write JPEG images to user gallery (camera roll) without iOS re-compressing them.
UIImage seems to be the bottleneck here. The only method for saving to user ...
1
vote
1answer
66 views
Trouble updating/setting the image in a UIImageView
I'm trying to call a UIImagePickerController and use the info that it gets to update a UIImageView. I can't get the UIImage from the info to the UIImageView.
- ...
0
votes
1answer
510 views
AVCaptureVideoPreview Orientation iOS 6
Since [AVCaptureVideoPreviewLayer setOrientation] was deprecated in iOS 6, I am trying to use [AVCaptureConnection videoOrientation:AVCaptureVideoOrientationLandscapeLeft]; but I getting an error ...
0
votes
2answers
1k views
check for authorization status to photo library
Is there a way to check for your app's authorization-level to the device's photo library under the new iOS 6 authorization scheme?
In other words, is there an equivalent for ...
2
votes
1answer
427 views
UIImagePickerController and CollectionView Controller/Cell
I have a CollectionViewController and a CollectionViewCell. I am fetching data from a database, so when the controller is loaded it dynamically creates the corresponding cells.
Every cell has a ...
0
votes
1answer
374 views
iOS 6 in app camera
Im building an app that allows the user to record a video (in app) by pressing a button on the main screen. I don't want the user to be taken to the photo app because the video will only be able to be ...
1
vote
2answers
1k views
how to use UIImagePickerController in an app which support Landscape orientation only in iOS-6?
I am developing an app which supports Landscape orientation only. It uses an UIImagePickerController to pick images and/or videos from the library. App is functioning fine in iOS-5 or before but it ...
2
votes
1answer
522 views
iPad simulator iOS6, not getting image from UIImagePickerController photo library
I just developed an app with new iOS6. My Xcode version is 4.5.1. I have some issues selecting an image from UIImagePickerController. When I select an image, I get the following error and do not get ...
1
vote
1answer
363 views
Facing issue in saving image to photo library in device for ios6
I have an issue while saving UIImage to photo library in device for ios 6.I am able to save the image in simulator but not in device.I have changed the privacy settings for photos in device.Still I am ...
0
votes
0answers
253 views
UIImagePickerController: [PLImageScrollView release]: message sent to deallocated instance
I am writing an iOS6 app using Cocos2D with ARC turned on (Cocos is linked as a static library, not under ARC). I am able to present the camera using the following code:
cameraController = ...
1
vote
1answer
1k views
presentPopoverFromRect:inView:permittedArrowDirections:animated crashing in iOS 6.0
I just upgraded from iOS 5.1.1 to 6.0 and the following code path is crashing with SIGTRAP when it attempts to display a popover with an imagePickerViewController as its contentVC to allow the user to ...
7
votes
1answer
917 views
How can you enable the iOS 6.0 panorama camera within an application?
I'm working on an app for iOS 6 that utilizes the camera, but I've been unable to figure out how to enable the options which would allow the user to take a panoramic shot. I've got everything working ...
0
votes
1answer
216 views
how to create photo gallery from the pics using throughout in app
how to create photo gallery within the app from the 70 pics using throughout in app
ImageView.animationImages = [NSArray arrayWithObjects:
[UIImage ...
2
votes
1answer
175 views
UIImagePickerController has two 'camera' buttons when started as front-facing
Since iOS6, whenever I show present a UIImagePickerController from inside a UIPopoverController, I am getting two "take picture" buttons:
This only happens when starting out in front-facing mode. ...
0
votes
1answer
284 views
Camera has incorrect screen placement when open fullscreen modal from popover
I have an iPad app that has a popover (UIPopoverController) with a number of views pushed, one of which has a button that launches the camera... see image...
The camera is instigated with this ...
0
votes
0answers
676 views
Xcode 4.5 4 inch simulator not allowing “Move and Scale” controls to work
I am trying to update my application to work with the new iPhone 5. It uses an image picker that allows you to move and scale your image (allowsEditing = TRUE;). However when I run the app on the 4 ...
4
votes
2answers
3k views
UIImagePickerController with cameraOverlayView on iPad iOS 6 has no “Take Photo” button
The following code creates a popover controller with a UIImagePickerController that uses cameraOverlayView to show a custom button that opens photo library.
This works great on iOS 5, but on iOS 6 ...

