Created
June 24, 2014 18:25
-
-
Save larsberg/9615b76a91842b3d2191 to your computer and use it in GitHub Desktop.
save OF fbo to image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void exportFbo(ofFbo& _fbo) | |
{ | |
auto path = ofSystemSaveDialog("fbo.png", "save as"); | |
ofShortPixels pixels; | |
_fbo.readToPixels(pixels); | |
ofSaveImage(pixels, path.getPath()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment