0

私のウェブサイトでswfを画像に変換したい。ユーザーがステージでいくつかの変更を行い、「画像リンクを取得」ボタンを押すと、swf ステージが画像に変換され、その画像リンクがボックス内に表示されます。imageshack のように、ユーザーはフォーラムで画像として使用できます。これどうやってするの?私はそれがフラッシュやhtmlについてであることさえ知りません...

4

1 に答える 1

1

Have a good read of Henry Jones - Using the AS3 Jpeg Encoder. He explains exactly what you need, plus some!

You basically what to use the BitmapData class to convert you displayobject into image data. Then you can use JPGEncoder from AS3 Core Lib, to encode that data into a JPEG. Then with a bit of serverside code you can send that JPEG to that server.

于 2010-06-16T21:47:18.403 に答える