• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Developing a web app that can "paste" images from the clipboard

Are there any classes out there for any of the main web languages..either Javascript, Flash, ajax, etc., that would allow one to grab an image from the clipboard and paste it in there?
 
Once anything gets copied to the clipboard, it gets stored in a specific location in the memory; some complex JavaScript functions can read from that memory location and write the content of that memory location in a file. Such functions may be available in online JavaScript resources. I came to know about this from an advanced book on JavaScript.
 
The reason browsers make it difficult is that you could potentially have sensitive info on your clipboard, and they don't want sites to be able to steal that information.
 
Originally posted by: CTho9305
The reason browsers make it difficult is that you could potentially have sensitive info on your clipboard, and they don't want sites to be able to steal that information.

That was my understanding.
 
Back
Top