We are using a custom camera in our application. I have implemented the custom camera using the below-mentioned link. When clicking the capture button the camera preview is stopped and it's working fine but how can I get the captured image data and I want to save the image in the gallery and return the path. I have got the captured image data in android by using PictureCallback. Please help me with this.
Custom Camera Link: https://learn.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/custom-renderer/view
Have a look at this blog. To get the image data in the
AVCapturePhotoCaptureDelegate
, I addedAVCapturePhotoOutput photoOutput
. Here is an example:I haven't translated all of the swift code to c#, feel free to ask me if you have any questions.