我有一张图片,我想从图片中删除白色。
去除颜色与背景颜色相同。如果有人对这个问题有任何疑问,请回答?
我在Flex 3中的应用程序所以请发给我这个问题的动作脚本代码。谢谢
答案 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)