Questions tagged [camera-overlay]

Camera-overlay represents the iOS property cameraOverlayView, which is a custom view to display on top of the default image picker interface. The camera-overlay is defined via the cameraOverlayView property of the UIImagePickerController.

The cameraOverlayView property is defined in the UIKit Framework Reference: https://developer.apple.com/library/prerelease/ios/documentation/UIKit/Reference/UIImagePickerController_Class/index.html#//apple_ref/occ/instp/UIImagePickerController/cameraOverlayView

84 questions
1
vote
0 answers

Camera Overlay View - UIButton Not Working

I've created an overlay view for a camera with two buttons, a take picture button and a switch camera button. Take picture should take the picture and switch camera should change the rear view and front view camera. Neither of the things work. I've…
A.J. S.
  • 218
  • 4
  • 15
1
vote
1 answer

camera overlay .xib file not showing buttons

I am trying to create a simple camera app with an overlay view that shows two buttons and a gesture recognizer. Currently I have an 'OverlayViewController' with a .xib file which contains a UIView with two buttons and a gesture recognizer. In my…
Santiago
  • 1,984
  • 4
  • 19
  • 24
1
vote
1 answer

how to create a camera overlay view that recognized swipe gestures?

I am trying to create a camera overlay that can recognize swipe gestures to push to other views. I am wondering if I can still use the UIImagePicker or if I have to use the AVCaptureSessionManager. Also i would prefer to create the overlay view in…
Santiago
  • 1,984
  • 4
  • 19
  • 24
1
vote
1 answer

Capture picture on volume up custom camera overlay ios

I am doing an app which take pictures and uploads to server. I am using custom camera overlay, I am showing it using [self presentModalViewController:self.picker animated:NO]; I want to capture picture on pressing volume key up also. I tried this…
Nuraiz
  • 1,060
  • 6
  • 17
  • 35
1
vote
3 answers

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 like, I have a problem related to the orientation…
1
vote
1 answer

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 people have tackled this issue? I'm really against…
1
vote
1 answer

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 controls down a bit for iPhone 5. Well, now those…
VaporwareWolf
  • 10,143
  • 10
  • 54
  • 80
1
vote
1 answer

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 Blank Screen. My Code is here:…
Sri
  • 13
  • 3
1
vote
0 answers

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 basic functionality aside from the flash,…
0
votes
1 answer

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 -(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:…
0
votes
1 answer

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 left and right perfectly in iPhone 3GS but not run…
Yuvaraj.M
  • 9,741
  • 16
  • 71
  • 100
0
votes
1 answer

How can I crop an image captured with Flutter camera based on a rectangle overlay?

[Flutter] How do I crop the image based on the overlay on top of Camera function? I set the image to this: final image = await _controller.takePicture(); I want to crop the image based on the rectangle overlay. currently I assign the model…
0
votes
2 answers

How can I add dark shading to an outer div but not inner div with css?

I am positioning an overlay on a webcam in my react app to show a user where to position their face. Here is my JSX:
sgt_pepper85
  • 421
  • 4
  • 14
0
votes
1 answer

Issue with cropped images in flutter_camera_overlay

I am using the flutter_camera_overlay plugin to achieve a cropped image of the card, but it's returning the original image instead of cropped one. Example on how should work:
0
votes
1 answer

How Capture image using camera 'Circle' overlay and Save it on path in Xamarin.forms (Android)

I am new in xamarin.forms and i wants to make a app using xamarin.forms for capture a image and save in given path. i also want add Camera Overlay to crop image in Circle shape. I have found below sample…