AS3で画面をキャプチャしてJPEGエンコードして、サーバーへ保存する例が以下に載っていました。URLを忘れそうなのでメモ。 - ActionScript3.0 png/jpegエンコード - http://kozy.heteml.jp/pukiwiki/index.php?ActionScript3.0%20png%2Fjpeg%A5%A8%A5%F3%A5%B3%A1%BC%A5%C9 - 必要なライブラリ -- http://code.google.com/p/as3corelib/ {{{ // 上記サイトのプログラムを転載(ちょっとだけ変更) var uri:String = "http://localhost/xxx.php"; var bmd:BitmapData = new BitmapData(stage.width,stage.height,true,0x00000000); bmd.draw(this); var byteArr:ByteArray = PNGEncoder.encode(bmd); var urlRequest:URLRequest = new URLRequest(uri); var urlLoader:URLLoader = new URLLoader(); urlRequest.contentType = "application/octet-stream"; urlRequest.method = URLRequestMethod.POST; urlRequest.data = byteArr; urlLoader.load(urlRequest); }}}