Id like to dynamicaly load or stream images to my app from a url whats the best way to go about it?
Ive tried:
[code]URL theurl(someurlwithimage);
InputStream *input = theurl.createInputStream(true);
Image* im = ImageFileFormat::loadFrom(input);[/code]
but get the following errors:
'juce::ImageFileFormat::loadFrom' : none of the 3 overloads could convert all the argument types
The manual indicated createInputStream can create InputStream that is perfectrly acceptable by loadFrom, whats going on?