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
0
votes
1 answer

Reposition Camera View

I have created and OverlayView for my UIImagePickerController. Is there a way to reposition where the viewer shows up? Currently the viewer is pushed all of the way to one side of the device with a black box filling the remaining portion of the…
bnjmn.myers
  • 409
  • 2
  • 6
  • 15
0
votes
1 answer

What is wrong with my camera overlay iOS 7?

Whenever I run my app on a device and I choose to take a picture it crashes without warning can someone tell me what is wrong with my overlay? CameraOverlay.h does not contain anything besides making UIView the…
user2780240
0
votes
2 answers

UIImagePickerController with Blur effect

I would to apply the blur effect to a CameraOverlayController. I have found FXBlurView project. So, I have create a my UIImagePickerViewController and in the viewDidLoad I tried this code: self.sourceType = …
Safari
  • 11,437
  • 24
  • 91
  • 191
0
votes
1 answer

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. - (void)captureStillImageWithOverlay:(UIImage*)overlay { …
Ram
  • 1,687
  • 3
  • 18
  • 28
0
votes
1 answer

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]; UIGraphicsBeginImageContext(rect.size); CGContextRef context =…
Ram
  • 1,687
  • 3
  • 18
  • 28
0
votes
1 answer

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] autorelease]]; NSDictionary *outputSettings =…
Ram
  • 1,687
  • 3
  • 18
  • 28
0
votes
1 answer

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 icons anywhere. Can someone please tell me where I…
Paul A.
  • 577
  • 2
  • 11
  • 24
0
votes
1 answer

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 teardownAVCapture]; [self setupAVCapture]; on button…
The iOSDev
  • 5,237
  • 7
  • 41
  • 78
-1
votes
1 answer

Detect when camera flash button is pressed?

I have a UIImagePickerController, used for taking pictures. There is a lightning button in the top left corner. When it is pressed, it brings up the three options: Auto, On, Off. These buttons refer to whether the flash mode is auto, on, or off. I…
1 2 3 4 5
6