Search code examples
flashactionscript-3imagedesktop-applicationscreenshot

Is it possible to capture the screen and save the image in actionscript 3?


I need to capture whats currently shown in my app and save it as a image, is a flash app running locally, without apache, just a flash app with AS3, is it possible?

Ive seen many solutions googling but all need a webserver and this app is running as a desktop app.

Thanks in advance.


Solution

  • Yes, it's possible.

    Draw some display object to a BitmapData (the stage, for example) and crop it if neccesary (the second param of BitmapData::draw will help you out here).

    Then, convert the raw pixel data to JPEG or PNG using some encoder. I'm sure up to this point, this is what those tutorials will explain you how to do.

    Now, the third step is different but simple enough. Instead of sending the image data to a server side script, use a FileReference object. Since Flash Player 10, it has a method called save, that prompts the user to save a file locally.

    Since this is a desktop app, you could also make it an AIR app. This will give more direct access to the file system and other features, in case you need them.