We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have popped oup the cameraa screen using the below code. I want to display an overlay image on the camera. Pl guide me how i can achieve.
Code -
``` let imageView: UIImageView = forImageView let pickerController = DKImagePickerController() pickerController.sourceType = .camera pickerController.didSelectAssets = { (assets: [DKAsset]) in let options = PHImageRequestOptions() options.deliveryMode = .highQualityFormat options.isSynchronous = true DKImageAssetExporter.sharedInstance.exportAssetsAsynchronously(assets: assets) { (info) in for asset in assets { if let localTemporaryPath = asset.localTemporaryPath, let data = try? Data(contentsOf: localTemporaryPath) { imageView.image = UIImage(data: data) completion(imageView.image) } } } } viewcontroler.present(pickerController, animated: true, completion: nil) completion(nil)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have popped oup the cameraa screen using the below code. I want to display an overlay image on the camera. Pl guide me how i can achieve.
Code -
The text was updated successfully, but these errors were encountered: