TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Jan 2016 |
Maintained by James Billingham.
UIView to show the camera, take a picture, preview it, return UIImage.
Even though an UIImagePickerController
allows a custom overlay to override the
default camera controls, it gives you no control over its camera bounds. Instead
it captures a UIImage in full camera resolution, giving you the option to edit
as a second step.
Note: as of v0.3.0, you must specify the camera position before the camera will activate.
pod 'JBCameraView'
JBCameraView
JBCameraViewDelegate
takePicture
on JBCameraView
the UIImage on your delegateJBCameraView *cameraView = [[JBCameraView alloc] initWithFrame:CGRect(320, 320)];
cameraView.delegate = self;
cameraView.position = JBCameraViewPositionBack;
[cameraView takePicture];
Please open an issue on this repository.
MIT licensed - see LICENSE file