views:

498

answers:

2

clipboard image directly save in to client side using javascript, any sample source code?

+2  A: 

In a typical browser environment JavaScript cannot:

  • access the clipboard
  • access the filesystem

So what you want is impossible in normal circumstances.

If you have an unusual environment (such as a WSH environment, or Internet Explorer with low security settings and access to ActiveX) then it might be achievable, but how you do it would depend on the context you are running the code in.

David Dorward
A: 

Check out this related post.

maxwellb