examples/input_output/imageLoaderWebExample/README.md
--
This openFrameworks example demonstrates how to load an image from the web and then apply a pointillism effect to the image.
In this example, pay attention to the following code:
ofLoadURLAsync which passes the url, and a name for the requestvoid ofApp::urlResponseresponse.status and the request name response.request.nameofUnregisterURLNotificationimg.load(response.data)img.getColor(x,y) , ofSetColor and ofDrawCircleWhen launching this app, you should see:
Instructions for use:
spacebar to make the load request for the imageWhen the image is loaded, the pointillism effect will be created on the left hand side. Moving your mouse around will affect the size of the circles used to create the effect.
This Example uses no other classes.