early exit
This commit is contained in:
parent
445043b11c
commit
2c6617f0a0
1 changed files with 2 additions and 0 deletions
|
@ -382,6 +382,8 @@ proc magnifyBy2*(image: Image, power = 1): Image {.raises: [PixieError].} =
|
||||||
proc applyOpacity*(target: Image | Mask, opacity: float32) {.raises: [].} =
|
proc applyOpacity*(target: Image | Mask, opacity: float32) {.raises: [].} =
|
||||||
## Multiplies alpha of the image by opacity.
|
## Multiplies alpha of the image by opacity.
|
||||||
let opacity = round(255 * opacity).uint16
|
let opacity = round(255 * opacity).uint16
|
||||||
|
if opacity == 255:
|
||||||
|
return
|
||||||
|
|
||||||
if opacity == 0:
|
if opacity == 0:
|
||||||
when type(target) is Image:
|
when type(target) is Image:
|
||||||
|
|
Loading…
Reference in a new issue