is there a way that I can resize the image that has been taken with a zoomed in camera in Xamarin. For eg, if I take image with Zoom factor 2, the image is resized to zoom factor 1 before I save it to gallery. Here is how I am zooming in the camera
var zoom = camera.GetParameters();
if (zoom.IsZoomSupported)
{
if (zoom.Zoom <= 0)
{
zoom.Zoom = 8;
camera.SetParameters(zoom);
}
}`