I want to use a transformation for my image and also want to use same API to load it by FFImageLoaded. Is it possible somehow?
Hi @dkornev,
I didn't understand. Could you write more details?
Hi @daniel-luberda,
Sorry. I mean that it would be nice to have a LoadDrawable method to load images from iOS UIImage:
UIImage uiImage;
ImageService.Instance.LoadDrawable(uiImage).Transform(new CircleTransformation()).Into(ivImage);
Can it be done with current version?
Not currently, but you can do something similar:
var stream = uiImage.AsPNG().AsStream();ImageService.Instance.LoadStream methodI'll check if we could implement that extension method in future.
OK, got it.
Thank you very much for you help!