Archived - Hasn't been maintained in 6 years
Preserved as reference material
A UIVIew that shows a live feed of the camera, can be used to take a picture, preview that picture and return an UIImage of that preview.
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.
VLBCameraView creates a viewport that displays only a portion of what the camera lense captures. Using that viewport, it creates a cropped UIImage of the full camera resolution.
The viewport of the VLBCameraView is fixed as a square at 320pt x 320pt. Even though other scales and aspect ratios should be supported, it hasn't been tested in such.
VLBCameraView mimics the 'flash' functionality when taking a picture, which can be customised via its 'flashView' property.
VLBCameraView gives you the option to save the full resolution images to the camera roll via its 'writeToCameraRoll' property.
Limited supports to customise the underlying AVCaptureConnection is also available.
- VLBCameraView The 'VLBCameraView.xcodeproj' builds a static library 'libVLBCameraView.a'
-> VLBCameraView (2.0) A UIVIew that shows a live feed of the camera, can be used to take a picture, preview the picture and return a UIImage of that preview.
pod 'VLBCameraView', '~> 2.0'
- Homepage: https://github.com/verylargebox/VLBCameraView
- Source: https://github.com/verylargebox/VLBCameraView.git
- Versions: 2.0, 1.0 [master repo]
2.0 A major release but a minor update. Breaking change due to a typo in a public method.
1.0 initial version. Support live feed, take picture, preview, re-take.
- Drag a UIView in the xib and change its type to VLBCameraView.
- Set its frame to (320, 320).
- Set its delegate to a class that implements VLBCameraViewDelegate.
- Call VLBCameraView#takePicture to receive a callback on your delegate with the UIImage
VLBCameraView *cameraView = [[VLBCameraView alloc] initWithFrame:CGRect(320, 320)];
cameraView.delegate = self; //where self, a class implementing VLBCameraViewDelegate
[cameraView takePicture];
See VLBCameraViewApp.
TBD
VLBCameraViewApp also includes the ApplicationTests for this library.
VLBCameraView published under the MIT license:
Copyright (C) 2013, www.verylargebox.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.