1

如何将颜色 BLACK: 0x000000 设置为透明,通常魔法粉红色是透明的,但我想将 BLACK 设置为。

如果你不明白:http: //j.imagehost.org/0829/WoodyGX_0.jpg

我有那个图像,在转换 80x80 精灵时,我希望背景是透明的,这意味着:没有背景,只有角色。

4

2 回答 2

2

此时您最好将其放入 Fireworks,使用魔杖选择黑色像素,删除它们,然后将其保存为透明 png。然后使用它。

但是,如果你想让你的生活变得比它需要的更难,你可能会使用 getPixel 来获取所有黑色像素,然后使用 setPixel 将它们设置为透明。但是,blitting 的全部意义在于速度,而不是缓慢的逐像素操作。

于 2012-06-05T01:40:13.360 回答
1

注意:这是 ActionScript 3 中的答案,以防您决定迁移到 ActionScript 3,但更适用于其他人和一般信息。



BitmapData您可以从源 中创建新的BitmapData,去除黑色像素(转换为 Alpha 通道)。

我为你创建了这个函数:

// Takes a source BitmapData and converts it to a new BitmapData, ignoring
// dark pixels below the specified sensitivity.
function removeDarkness(source:BitmapData, sensitivity:uint = 10000):BitmapData
{
    // Define new BitmapData, with some size constraints to ensure the loop
    // doesn't time out / crash.
    // This is for demonstration only, consider creating a class that manages
    // portions of the BitmapData at a time (up to say 50,000 iterations per
    // frame) and then dispatches an event with the new BitmapData when done.
    var fresh:BitmapData = new BitmapData(
        Math.min(600, source.width),
        Math.min(400, source.height),
        true, 0xFFFFFFFF
    );

    fresh.lock();

    // Remove listed colors.
    for(var v:int = 0; v < fresh.height; v++)
    {
        for(var h:int = 0; h < fresh.width; h++)
        {
            // Select relevant pixel for this iteration.
            var pixel:uint = source.getPixel(h, v);

            // Check against colors to remove.
            if(pixel <= sensitivity)
            {
                // Match - delete pixel (fill with transparent pixel).
                fresh.setPixel32(h, v, 0x00000000);

                continue;
            }

            // No match, fill with expected color.
            fresh.setPixel(h, v, pixel);
        }
    }


    // We're done modifying the new BitmapData.
    fresh.unlock();


    return fresh;
}

如您所见,它需要:

  • 要从中删除较暗像素的 BitmapData。
  • uint 表示您想要移除多少个黑色/灰色阴影。

这是使用您的源图像的演示:

var original:Loader = new Loader();
original.load( new URLRequest("http://j.imagehost.org/0829/WoodyGX_0.jpg") );
original.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);


// Original image has loaded, continue.
function imageLoaded(e:Event):void
{
    // Capture pixels from loaded Bitmap.
    var obmd:BitmapData = new BitmapData(original.width, original.height, false, 0);
    obmd.draw(original);


    // Create new BitmapData without black pixels.
    var heroSheet:BitmapData = removeDarkness(obmd, 1200000);
    addChild( new Bitmap(heroSheet) );
}
于 2012-06-05T03:55:55.140 回答