如何在承载Flash应用程序的ASP.NET / C#页面中以编程方式制作Flash应用程序的图片?提前感谢您的帮助。
答案 0 :(得分:1)
尝试这样的事情:
答案 1 :(得分:0)
如本帖所述:Extract Bitmap or BitmapData from MovieClip
您可以使用以下内容:
var myBitmapData:BitmapData = new BitmapData(something, orrather)
myBitmapData.draw(theNameOfTheMovieClipThatYouNeedAsABitmap);
然后,您可以尝试关注the suggestions on this post to upload your BitmapData to the server。