screenShot.EncodeToPNG(); to new web browser

hi guys,

i have a web based unity application.

when i click on a button i would like to take a screen shot and open the png file in a new browser window.

i know how to take a screen shot and save it as a png file.

but i am wondering if it is possible to open it direction into a new browser window since web based applications do not allow a user to save to a local drive.

thank you

nope you can’t, cause the webbrowser can’t show something it can’t find and your image counts to the things it can’t find unless you upload them to some http / ftp place.

the window opening would be pretty easily doable through ExternalCall / ExternalEval

is there any way of copying the screenshot to the clipboard once you click the button in the web player?

thanks for the reply

the clipboard is a system thing. You can not access anything thats related to the system.

if you want to reuse it, the one and only way to do so is to store it on a webserver for reuse …