将文本转换为具有透明背景的位图或动画片段

时间:2011-02-13 14:00:07

标签: actionscript-3

如何将文本转换为具有透明背景的位图或mocieclip。 我可以将文本转换为位图,但它有一个白色的背景..

1 个答案:

答案 0 :(得分:7)

您必须确保使用透明的background-fill-color(构造函数的第4个参数)初始化BitmapData对象。这应该有效(假设你的文本在TextField中):

var snapshot:BitmapData = new BitmapData(textField.width, textField.height, true, 0x00000000);
snapshot.draw(textField, new Matrix());

另请参阅as3 docs for the BitmapData constructor