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

不打扰是莪最后的温柔 提交于 2019-12-08 03:15:45

问题


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.


回答1:


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.




回答2:


After hours of research this looks like it isnt possible for some security restrictions of the flash player. All methods need some server side script to do it. The closer to what i needed was this but it needs apache or similar so it seems to be impossible to do in a standalone flash app




回答3:


There is a helper class that can grab the current visual state of a graph of DisplayObjects (actually, anything that implements IBitmapRenderer) and saves it out as bitmap data. That class is mx.graphics.ImageSnapshot.



来源:https://stackoverflow.com/questions/3027489/is-it-possible-to-capture-the-screen-and-save-the-image-in-actionscript-3

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!