mask magnifyBy2

This commit is contained in:
Ryan Oldenburg 2021-10-03 15:31:39 -05:00
parent e99879b3bd
commit ea1aef7bd2
3 changed files with 22 additions and 0 deletions

View file

@ -153,6 +153,22 @@ proc minifyBy2*(mask: Mask, power = 1): Mask {.raises: [PixieError].} =
# Set src as this result for if we do another power
src = result
proc magnifyBy2*(mask: Mask, power = 1): Mask {.raises: [PixieError].} =
## Scales mask up by 2 ^ power.
if power < 0:
raise newException(PixieError, "Cannot magnifyBy2 with negative power")
let scale = 2 ^ power
result = newMask(mask.width * scale, mask.height * scale)
for y in 0 ..< result.height:
for x in 0 ..< mask.width:
let
value = mask.getValueUnsafe(x, y div scale)
scaledX = x * scale
idx = result.dataIndex(scaledX, y)
for i in 0 ..< scale:
result.data[idx + i] = value
proc fillUnsafe*(
data: var seq[uint8], value: uint8, start, len: int
) {.raises: [].} =

Binary file not shown.

After

Width:  |  Height:  |  Size: 944 B

View file

@ -36,6 +36,12 @@ block:
writeFile("tests/images/masks/maskMinified.png", minified.encodePng())
block:
let
a = readImage("tests/images/masks/maskMinified.png")
b = a.magnifyBy2()
b.writeFile("tests/images/masks/maskMagnified.png")
block:
let image = newImage(100, 100)
image.fill(rgba(255, 100, 100, 255))