Articles in this section

How to load an image from camera in ImageEditor for Xamarin.iOS

How to Load an Image from Camera in ImageEditor Xamarin.iOS?

Description:

This article explains you to load an Image from Camera to the Image Editor.

 

Solution:

 

  1. Create a Xamarin application and initialize SfImageEditor control in it by using the below code.

 

Import the SfImageEditor as shown below,

 

C#

 

 
using Syncfusion.SfImageEditor.iOS;

 

 
SfImageEditor imageEditor = new SfImageEditor();
imageEditor.Frame = this.View.Frame; 
View.AddSubview(imageEditor);
 

 

  1. Load an Image from Camera to the image editor by call the UploadFromCamera method as shown in below and set the image picker image to the image property of image editor.

 

C#

 

void UploadFromCamera()
{
    imagePicker = new UIImagePickerController();
 
    imagePicker.SourceType = UIImagePickerControllerSourceType.Camera;
 
    imagePicker.MediaTypes = UIImagePickerController.AvailableMediaTypes(UIImagePickerControllerSourceType.Camera);
 
    imagePicker.FinishedPickingMedia += ImagePicker_FinishedPickingMedia; ;
    imagePicker.Canceled += (sender, evt) =>
    {
        Console.WriteLine("picker cancelled");
        imagePicker.DismissModalViewController(true);
    };
 
    this.PresentViewController(imagePicker, true, null);
}
 
 
void ImagePicker_FinishedPickingMedia(object sender, UIImagePickerMediaPickedEventArgs e)
{
    imagePicker.DismissModalViewController(true);
    imageEditor.Image = e.OriginalImage;
}
 

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Access denied
Access denied