Skip to content

Getting Started

BitooBit edited this page Dec 22, 2019 · 10 revisions

Xamarin.Forms:

public ImageSource Source { get; set; }
public ICommand ButtonCommand => new Command(async () =>
{
    byte[] data = await ImageEditor.Instance.GetEditedImage();
    if (data != null)
        Source = ImageSource.FromStream(() => new MemoryStream(data));
});
Clone this wiki locally