我有一大堆需要在项目中使用的 jpg 文件,由于某种原因无法更改。每个文件都是相似的(手写),黑色的笔在白色的 BG 上。但是,我需要在我的 flash 项目中将这些资源用于非白色背景,因此我尝试使用 getPixel 和 setPixel32 进行一些客户端处理以消除背景。
我目前使用的代码目前使用线性比较,虽然它有效,但结果低于预期,因为灰色阴影在混合中消失了。除了调整我的参数以使事情看起来正确之外,我还觉得我计算 RGBa 值的方法很弱。
谁能推荐比我在下面使用的更好的解决方案?非常感激!
private function transparify(data:BitmapData) : Bitmap {
// Create a new BitmapData with transparency to return
var newData:BitmapData = new BitmapData(data.width, data.height, true);
var orig_color:uint;
var alpha:Number;
var percent:Number;
// Iterate through each pixel using nested for loop
for(var x:int = 0; x < data.width; x++){
for (var y:int = 0; y < data.height; y++){
orig_color = data.getPixel(x,y);
// percent is the opacity percentage, white should be 0,
// black would be 1, greys somewhere in the middle
percent = (0xFFFFFF - orig_color)/0xFFFFFF;
// To get the alpha value, I multiply 256 possible values by
// my percentage, which gets multiplied by 0xFFFFFF to fit in the right
// value for the alpha channel
alpha = Math.round(( percent )*256)*0xFFFFFF;
// Adding the alpha value to the original color should give me the same
// color with an alpha channel added
var newCol = orig_color+alpha;
newData.setPixel32(x,y,newCol);
}
}
var newImg:Bitmap = new Bitmap(newData);
return newImg;
}