如何在flex中将白色透明到图像的背景色?

时间:2009-05-21 07:25:38

标签: flex

我有一张图片,我想从图片中删除白色。

去除颜色与背景颜色相同。如果有人对这个问题有任何疑问,请回答?

我在Flex 3中的应用程序所以请发给我这个问题的动作脚本代码。谢谢

2 个答案:

答案 0 :(得分:2)

以下是为您提供预期功能的代码段。

var sourceBitmap:BitmapData = new BitmapData(myChart.width, myChart.height,true,0x000000);
sourceBitmap.draw(myChart);  
//prev image is the "Image" variable name
prevImage.source = new Bitmap(sourceBitmap);

答案 1 :(得分:0)

  1. 使用irfanview将图像的背景从白色更改为透明(通过保存为PNG)。
  2. 像往常一样使用flex
  3. 的利润!