From 534f9d9c352c4a9695d3606ed466aad38c3d86a5 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 4 May 2021 10:09:46 -0400 Subject: [PATCH] sdpy helpers for alpha --- color.d | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/color.d b/color.d index 12e8081..008a59c 100644 --- a/color.d +++ b/color.d @@ -217,6 +217,21 @@ struct Color { nothrow pure @nogc static Color brown() { return Color(128, 64, 0); } + nothrow pure @nogc + void premultiply() { + r = (r * a) / 255; + g = (g * a) / 255; + b = (b * a) / 255; + } + + nothrow pure @nogc + void unPremultiply() { + r = cast(ubyte)(r * 255 / a); + g = cast(ubyte)(g * 255 / a); + b = cast(ubyte)(b * 255 / a); + } + + /* ubyte[4] toRgbaArray() { return [r,g,b,a]; @@ -447,6 +462,22 @@ struct Color { } } +void premultiplyBgra(ubyte[] bgra) pure @nogc @safe nothrow in { assert(bgra.length == 4); } do { + auto a = bgra[3]; + + bgra[2] = (bgra[2] * a) / 255; + bgra[1] = (bgra[1] * a) / 255; + bgra[0] = (bgra[0] * a) / 255; +} + +void unPremultiplyRgba(ubyte[] rgba) pure @nogc @safe nothrow in { assert(rgba.length == 4); } do { + auto a = rgba[3]; + + rgba[0] = cast(ubyte)(rgba[0] * 255 / a); + rgba[1] = cast(ubyte)(rgba[1] * 255 / a); + rgba[2] = cast(ubyte)(rgba[2] * 255 / a); +} + unittest { Color c = Color.fromString("#fff"); assert(c == Color.white);