Actually nope, I am getting data from REST API. So inside of response image is encoded with base64 with other data. I actually succeeded to load image, but now I am struggling with getting my image inside ImageComponent so it can be used inside resized() method with FlexBoxes.
Well, the obvious first thing to do would be to step into it and see what happens, and look for clues.
I actually saw something similar last week where a webserver was sending invalid base64, it was missing off the padding bytes, so the juce base64 classes were correctly refusing to parse it. It should be obvious when you debug it to see whether that’s the case for you.
Issue never was regarding not parsing base64, that step was always ok. Issue was regarding loading data into Image and getting proper Image object. ImageFormat could not undestand data.
In meanwhile I solved that issue Thanks!