Merge pull request from guzba/master

start transition to all premul alpha
This commit is contained in:
treeform 2021-02-08 17:18:28 -08:00 committed by GitHub
commit 221bf61aa5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 24 additions and 16 deletions

View file

@ -263,6 +263,15 @@ proc toStraightAlpha*(image: Image) =
c.g = ((c.g.uint32 * multiplier) div 255).uint8
c.b = ((c.b.uint32 * multiplier) div 255).uint8
proc applyOpacity*(image: Image, opacity: float32) =
## Multiplies alpha of the image by opacity.
let opacity = round(255 * opacity).uint32
for rgba in image.data.mitems:
rgba.r = ((rgba.r * opacity) div 255).uint8
rgba.g = ((rgba.g * opacity) div 255).uint8
rgba.b = ((rgba.b * opacity) div 255).uint8
rgba.a = ((rgba.a * opacity) div 255).uint8
proc getRgbaSmooth*(image: Image, x, y: float32): ColorRGBA =
let
minX = floor(x)
@ -272,18 +281,19 @@ proc getRgbaSmooth*(image: Image, x, y: float32): ColorRGBA =
x = minX.int
y = minY.int
x0y0 = image[x + 0, y + 0].toPremultipliedAlpha()
x1y0 = image[x + 1, y + 0].toPremultipliedAlpha()
x0y1 = image[x + 0, y + 1].toPremultipliedAlpha()
x1y1 = image[x + 1, y + 1].toPremultipliedAlpha()
x0y0 = image[x + 0, y + 0]
x1y0 = image[x + 1, y + 0]
x0y1 = image[x + 0, y + 1]
x1y1 = image[x + 1, y + 1]
bottomMix = lerp(x0y0, x1y0, diffX)
topMix = lerp(x0y1, x1y1, diffX)
finalMix = lerp(bottomMix, topMix, diffY)
finalMix.toStraightAlpha()
lerp(bottomMix, topMix, diffY)
proc drawCorrect*(a: Image, b: Image | Mask, mat = mat3(), blendMode = bmMask) =
proc drawCorrect(
a: Image, b: Image | Mask, mat = mat3(), blendMode = bmNormal
) =
## Draws one image onto another using matrix with color blending.
when type(b) is Image:
let blender = blendMode.blender()
@ -300,8 +310,9 @@ proc drawCorrect*(a: Image, b: Image | Mask, mat = mat3(), blendMode = bmMask) =
block: # Shrink by 2 as needed
var
dx = matInv * vec2(1, 0)
dy = matInv * vec2(0, 1)
p = matInv * vec2(0 + h, 0 + h)
dx = matInv * vec2(1 + h, 0 + h) - p
dy = matInv * vec2(0 + h, 1 + h) - p
while max(dx.length, dy.length) > 2:
b = b.minifyBy2()
dx /= 2
@ -447,12 +458,6 @@ proc blurAlpha*(image: Image, radius: float32) =
alpha += c2.a.float32 * a
image.setRgbaUnsafe(x, y, rgba(0, 0, 0, alpha.uint8))
proc applyOpacity*(image: Image, opacity: float32) =
## Multiplies alpha of the image by opacity.
let op = (255 * opacity).uint32
for rgba in image.data.mitems:
rgba.a = ((rgba.a.uint32 * op) div 255).clamp(0, 255).uint8
proc sharpOpacity*(image: Image) =
## Sharpens the opacity to extreme.
## A = 0 stays 0. Anything else turns into 255.

View file

@ -68,7 +68,7 @@ block:
mask.fillPath(path)
timeIt "mask":
image.mask(mask)
image.draw(mask)
reset()

View file

@ -12,3 +12,6 @@ timeIt "minifyBy2":
doAssert minified[0, 0] == 63
reset()
timeIt "applyOpacity":
mask.applyOpacity(0.5)