I work with app for windows 10. I tried to make an application for image editing.
var client = new HttpClient();
var stream = await client.GetStreamAsync(ImageUrl);
var source = new StreamImageSource(stream);
var info = await source.GetInfoAsync();
and I get an error in line var source = new StreamImageSource(stream);:
Exception thrown: 'System.IO.FileNotFoundException' in Lumia.Imaging.Managed.dll
Exception thrown: 'System.IO.FileNotFoundException' in mscorlib.ni.dll
RenderImage error: The specified module could not be found. (Exception from HRESULT: 0x8007007E)
What am I doing wrong? I Work with LumiaImagingSDK.UWP 3.0.
The formats supported by the StreamImageSource ctor of the Imaging SDK are : Jpeg Png Gif Bmp Wbmp Tiff
Check that your URL is correct and points to one of these images formats.