The camera-overlay tag has no wiki summary.
0
votes
1answer
54 views
Capture overlay image without setting drawInRect
I need to take overlay image without setting drawInRect. When i set drawInRect it gives output of setting size. I need to take picture with new size without using following code.
- ...
0
votes
1answer
45 views
Camera controller not working when taking screenshot
I took screenshot of overlay image with background camera controller. But background cameracontroller layer is hiding when taking picture
code:
CGRect rect = [previewView bounds];
...
0
votes
0answers
36 views
Takescreenshot with overlay image
I used AVFoundation framework for capture overlay image. But when i move my image to some reference point and take screenshot it display only what i set in drawInRect for overlayimage. How to take ...
0
votes
0answers
33 views
Takepicture dynamically using AVFoundation framework
I need to take picture with overlay image. But when i move overlay image some position and took picture but overlay image default set what i wrote in output drawInRect. But when i move picture some ...
0
votes
1answer
115 views
Capture overlayimage using AVFoundation framework
I want to take picture with overlay image.
code:
- (void)addStillImageOutput
{
// NSLog(@"You capture image");
[self setStillImageOutput:[[[AVCaptureStillImageOutput alloc] init] ...
1
vote
0answers
78 views
Prevent shutter animation from appearing full screen when using cameraOverlayView
I'm using a custom UIView as a camera overlay. Parts of the top and bottom of the screen are hidden and the middle is dedicated to what the camera sees.
My problem is that whenever I turn on the ...
0
votes
1answer
147 views
How to handle the change of orientation like the standard camera application on the iPhone
I use AVFoundation framework to get access to camera.
In the standard camera application, when the orientation changes only the rotation of the icons on the buttons.
But when I try to do something ...
2
votes
1answer
270 views
UIImagePickerController cameraOverlay behind shutter
Can not find any definitive answer, but it looks like it is not possible. I am just displaying a frame image as an overlay to guide the user where the photo should be positioned. However the frame ...
3
votes
1answer
637 views
UIImagePickerController with cameraOverlayView focusses when button in overlay is tapped
I'm new to Objective C and it's my first question I'm posting here so this is probably the easiest question in the world to answer, but I couldn't figure this one out.
I am trying to create an iOS ...
0
votes
0answers
120 views
Detect orientation while using picker.cameraOverlayView, iPhone
I am using cameraOverlayView to add custom controls to the camera picker in my app. The view is locked in portrait orientation, from what I gather, and cannot detect orientation via the ...
0
votes
1answer
716 views
IOS Change Camera icon for custom camera overlay
How and where do I find the "Change Camera" and "Camera Flash on/off" icon used in the native camera application on the iPhone. I would like to use this in my camera overlay but I cannot find this ...
1
vote
1answer
920 views
UIImagePickerController Size iPhone 5
I'm building an app using the UIImagePickerController and a custom Overlay. With the iPhone 5 screen size adding 88 points but the camera view port staying roughly the same size I was wondering how ...
3
votes
0answers
238 views
What is the correct cameraViewTransform to apply to UIImagePickerController?
I'm trying to put a custom overlay over a UIImageCameraPickerController. To avoid the white space at the bottom I know I have to apply a scale transform of 1.24299 in the Y axis.
Why that value? Is ...
1
vote
1answer
891 views
UIImagePickerController cameraOverlayView not working with iPhone 5?
When iPhone 5 came out, my custom cameraOverlay no longer lined up to cover the default camera shutter and cancel button.
I added some code to detect the phone's hardware version and moved the ...
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 ...
1
vote
0answers
384 views
ImagePickerController with cameraOverlayView not adding to the ViewController's View
I'm trying to present an UIImagePickerController with an Overlay view on it.I'm adding OverlayViewController's view as a subview to ViewController. But When I dump the app into device it is showing a ...
1
vote
0answers
640 views
how to create overlay view for camera and access its methods in iphone sdk?
hi i have searched lot of for custom camera overlay view. i have find almost many sample projects but i can't still get perfect answer as i want to get. My question is i want to implement custom ...
2
votes
0answers
2k views
UIImagePickerController overlayView and showsCameraControls issue
I'm trying to use a custom overlay on the UIImagePickerController and also be able to move and scale the resulting image. The problem is when I set showsCameraControls=YES, the overlay won't show but ...
0
votes
1answer
185 views
Square Cam's View not shown cameraview
I refer the squareCam example of apple's development library it works fine.
But
When i try to change overlay image on one button click like this
square = [UIImage imageNamed:@"add"];
[self ...
2
votes
1answer
234 views
UIActivityIndicatorView not showing on theCamera overlay view when image taking done
I have a UIActivityIndicatorView middle on camera OverlayView.xib. I am taking multiple snap by calling [cameraPicker takePicture] repeatedly. I want to show the indicator when all snaps taking done ...
1
vote
0answers
1k views
Using a toolbar with buttons as an imagepicker camera overlay?
I am trying to add some basic functionality to a camera application.
The app works like this: You press the camera button somewhere in the app, the camera activates and then gives you some extra ...
5
votes
1answer
1k views
cameraOverlayView prevents editing with allowsEditing
Editing a photo after it's been taken (moving and scaling it) works fine in my app with this line:
[imagePicker setAllowsEditing:YES];
But if I also use a cameraOverlayView, the editing mode ...
0
votes
1answer
418 views
Immediately get UIImage after UIImagepickercontroller -(void)takePicture
I have a cameraOverlay with it's own camera button and I use the takePicture method when they press the camera button and use the delegate method
...
2
votes
1answer
473 views
Exlusive touch in cameraoverlay view (of the camerapicker) in iOS?
In my application, I added a cameraOverlayView to the camerapicker. It contains three subviews, two UIButtons and one UIImageView. The image is draggable. The buttons are used to change the image to ...
1
vote
0answers
138 views
renderincontext works fine in portrait but not landscape
I am developing an app to allow for an view to be overlaid on a picture taken. I am using the following code to accomplish this:
UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0.0);
...
0
votes
1answer
832 views
Camera overlayview not change landscape orientation(Left and Right) in iPhone4?
I have customized the camera with custom buttons(UIButton) by overlay view. My iPhone application will run only in Landscape mode(Left and Right). Now, my camera overlay view change it's orientation ...
4
votes
1answer
2k views
How to change camera Overlayview orientation landscape left and right iPhone?
In my iPhone application i have a UIImagePickerController for take photos. I have hide all default camera controls and added UIView with Two button as a CameraOverLayView in UIImagePickerController. ...
1
vote
1answer
149 views
iphone: displaying small, live camera image in window (2)
I am having a great deal of trouble displaying at small, live camera image in a viewController.
I would have expected the following code to show camera display to appear in a 100x 100 window, but ...
4
votes
1answer
1k views
Touch-To-Focus on cameraOverlayView in iOS 5?
I used to have touch to focus on my cameraOverlayView (in UIImagePickerController), but once I updated to iOS 5 it doesn't work.
I used a custom view class which I applied to my view in ...
8
votes
1answer
418 views
How to customise the Camera screen frame?
I want to lauch camera with customised frame so that I should be able to show UIsearchBar in the same View and on touching the UISearchBar I need to close the camera, but the UIsearchBar should be ...
21
votes
1answer
1k views
Camera Overlay with User-Photo not saving as edited
I am using a transparent image with a cut out for a user to insert / take their own image. For some reason, while using the UIImagePickerControllerEditedImage and cropping the user-taken photo, the ...
3
votes
3answers
3k views
fire event when touch up inside uiview and outside button
I have a view overlayed to the iPhone's camera view. In this view I have some uibuttons that are displayed in positions depending of values from accelerometer/compass.
I need to fire an event when the ...