0

I found a very nice jQuery polaroid running in a div.

Is it possible to save the result in a single image? What library should I use? I am using Java, JavaScript and Python. Is there a library for those languages?

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
ntenisOT
  • 1
  • 1
  • 1

1 Answers1

1

It's not quite clear how you want to use this. A couple of use cases come to mind:

  1. Occasionally, in your own browser. Use Windows screen capture (Alt-printscreen), paste into a graphics editor (Paint.NET), and crop.

  2. Often, in your own browser. Install a browser plugin like IECapt http://iecapt.sourceforge.net/ or FireShot https://addons.mozilla.org/en-US/firefox/addon/5648/

  3. Programmatically, in your own browser. Use win32 api calls to get a screenshot, crop and save. ?Linux equivalent?

  4. For a developer, to get testing screenshots on their own machine or a test machine. Selenium RC http://saucelabs.com/blog/index.php/2009/10/selenium-tip-of-the-week-screenshot/

  5. For a user, in their own browser:

Some related questions:

Community
  • 1
  • 1
Hugh Bothwell
  • 55,315
  • 8
  • 84
  • 99