mask magnifyBy2
This commit is contained in:
parent
e99879b3bd
commit
ea1aef7bd2
3 changed files with 22 additions and 0 deletions
|
@ -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: [].} =
|
||||
|
|
BIN
tests/images/masks/maskMagnified.png
Normal file
BIN
tests/images/masks/maskMagnified.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 944 B |
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue