在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:GabrielAlva/Cool-iOS-Camera开源软件地址:https://github.com/GabrielAlva/Cool-iOS-Camera开源编程语言:Objective-C 97.5%开源软件介绍:Features
Installation
UsageUsing CustomizableCamera in your app is very fast and simple. Displaying the camera view and adopting its delegateAfter importing the Next, declare a CameraSessionView property: @property (nonatomic, strong) CameraSessionView *cameraView; Now in the place where you would like to invoke the camera view (on the action of a button or viewDidLoad) instantiate it, set it's delegate and add it as a subview: _cameraView = [[CameraSessionView alloc] initWithFrame:self.view.frame];
_cameraView.delegate = self;
[self.view addSubview:_cameraView]; Now implement one of this two delegate functions depending on whether you would like to get back a For a UIImage: -(void)didCaptureImage:(UIImage *)image {
//Use the image that is received
} For NSData: -(void)didCaptureImageWithData:(NSData *)imageData {
//Use the image's data that is received
} Dismissing the camera viewYou can hide the camera view either by pressing the dismiss button on it or by writing CustomizationOnce you have your To change the color of the top bar including its transparency: [_cameraView setTopBarColor:[UIColor colorWithRed:0.97 green:0.97 blue:0.97 alpha: 0.64]]; To hide the flash button: [_cameraView hideFlashButton]; //On iPad flash is not present, hence it wont appear. To hide the switch camera's button: [_cameraView hideCameraToogleButton]; To hide the dismiss button: [_cameraView hideDismissButton]; If no customization is made, the camera view will use its default look. ExampleYou can find a full example on usage and customization on the Xcode project attached to this repository. Contributor
LicenseThe MIT License (MIT) Copyright (c) 2015 Gabriel Alvarado ([email protected]) 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. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论