It saves a screenshot in <Project>\Saved\Screenshots\Windows. But I want more control over the image. Is it possible, say, to access individual pixels?
Is it possible to get what’s on the screen as an image object (and maybe also save it in a custom location)?
You can spawn a scene capture 2d at your camera location and render the scene capture to a render target. Then you can do whatever you want with that render target.
Hey there! I’ve tried spawning SceneCapture2D and then rendering the scene capture to a render target. I was not able to save the resulting Texture2D to a SaveGame file directly (was resulting in a black image) but I was able to save the Texture2D to an actual file on the HDD. I know using C++, this is a rather easy task but I’ve managed to do it in Blueprints only since there were a lot of people interested.