Merge pull request #94 from guzba/master

draw image into mask
This commit is contained in:
treeform 2021-02-08 18:02:13 -08:00 committed by GitHub
commit e198e521d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 9 deletions

View file

@ -309,12 +309,7 @@ proc drawCorrect(
else: # b is a Mask
validateMaskBlendMode()
else: # a is a Mask
when type(b) is Image:
raise newException(
PixieError,
"Drawing an image onto a mask is not supported yet"
)
else: # b is a Mask
when type(b) is Mask:
validateMaskBlendMode()
var
@ -355,9 +350,11 @@ proc drawCorrect(
)
a.setRgbaUnsafe(x, y, blended)
else: # a is a Mask, b must be a mask
let
value = a.getValueUnsafe(x, y)
sample = b.getValueSmooth(xFloat, yFloat).uint32
let value = a.getValueUnsafe(x, y)
when type(b) is Image:
let sample = b.getRgbaSmooth(xFloat, yFloat).a.uint32
else: # a is a Mask
let sample = b.getValueSmooth(xFloat, yFloat).uint32
a.setValueUnsafe(x, y, ((value * sample) div 255).uint8)
proc draw*(image: Image, mask: Mask, mat: Mat3, blendMode = bmMask) =
@ -371,6 +368,9 @@ proc draw*(
proc draw*(a, b: Mask, mat = mat3(), blendMode = bmMask) =
a.drawCorrect(b, mat, blendMode)
proc draw*(mask: Mask, image: Image, mat = mat3(), blendMode = bmMask) =
mask.drawCorrect(image, mat, blendMode)
when defined(release):
{.pop.}

Binary file not shown.

After

Width:  |  Height:  |  Size: 885 B

View file

@ -48,3 +48,16 @@ block:
a.draw(b)
writeFile("tests/images/masks/maskedMask.png", a.encodePng())
block:
let a = newMask(100, 100)
a.fill(255)
var path: Path
path.ellipse(a.width / 2, a.height / 2, 25, 25)
let b = newImage(a.width, a.height)
b.fillPath(path, rgba(0, 0, 0, 255))
a.draw(b)
writeFile("tests/images/masks/imageMaskedMask.png", a.encodePng())