Hello,
I am trying to open the ImageEditor without an existing image, forcing the user to work within a cropped space, say 6x1.
I can get it working using the suggestions on this forum by loading an existing image and then:
editor.ImageLoaded += (sender, args) =>
{
editor.ToggleCropping(12, 7);
};
But I want to give the user the option to create a new image within a pre-defined space.
Thanks.
Alan