Hello there dear oF-people,
I’m using ofxThreadedImageLoader to – as the name implies – load some images
Im wondering if there’s a possibility to get a callback as soon as an image is loaded?
Thanks in advance,
Daniel
Hello there dear oF-people,
I’m using ofxThreadedImageLoader to – as the name implies – load some images
Im wondering if there’s a possibility to get a callback as soon as an image is loaded?
Thanks in advance,
Daniel
Hello! You can create custom event and in method ofxThreadedImageLoader::update(ofEventArgs & a)
After images_to_update.pop_front();
Send ofNotifyEvent(IMAGE_LOADED, entry.filename, this);
This is work for me)