Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建一个应用程序,其中实时视频流在 mx:video 对象中发布。我想捕捉。如果有人可以帮助我,那对我来说会很棒。否则无论如何我可以捕获面板内容然后也很好......!
谢谢,
如果要将内容捕获为 Bitmap 实例:
var bitmapData:BitmapData = new BitmapData(panel.width,panel.height); bitmapData.draw(panel, new Matrix()); var bitmap = new Bitmap(bitmapData);