是否有动作脚本可以启用屏幕特定区域的屏幕截图?并可能在不同的阶段显示此屏幕截图?
问问题
1445 次
1 回答
1
您将需要使用BitmapData对象将当前的 pizel 绘制到一个新对象上。代码可能看起来像这样......
//Assuming x,y,w,h is the area you want to capture
//Create a new bitmap data object to store our screen capture
var bmp:BitmapData = new BitmapData(h, w);
//Draw the stage onto our bitmap data clipping at the correct points
bmp.Draw(stage, null, null, null, new Rectangle(x, y, w, h));
于 2011-01-19T18:05:47.390 回答