Skip to content

Instantly share code, notes, and snippets.

@larsberg
Created June 24, 2014 18:25
Show Gist options
  • Save larsberg/9615b76a91842b3d2191 to your computer and use it in GitHub Desktop.
Save larsberg/9615b76a91842b3d2191 to your computer and use it in GitHub Desktop.
save OF fbo to image
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