PyGame アプリケーションで Gnash レンダラーを使用して Flash アプリケーションを表示する方法はありますか (Adobe のレンダラーは嫌いではありませんが、使用したくありません)。
質問する
390 次
1 に答える
0
Does Gnash allow drawing to an SDL_Surface? If so, Pygame has a C API that would make gluing these together easy. If not your best bet will be Pygame's frombuffer command. This will interepret a raw block of data as an image. You'll still need some way of getting that pointer from Gnash to your Python code.
于 2009-11-06T18:13:27.170 に答える