data len check
This commit is contained in:
parent
42da6582cf
commit
c114ca02dd
1 changed files with 4 additions and 0 deletions
|
@ -23,6 +23,10 @@ proc decodeBmp*(data: string): Image =
|
||||||
if compression notin [0, 3]:
|
if compression notin [0, 3]:
|
||||||
raise newException(PixieError, "Invalid BMP data format")
|
raise newException(PixieError, "Invalid BMP data format")
|
||||||
|
|
||||||
|
let channels = if bits == 32: 4 else: 3
|
||||||
|
if width * height * channels + offset > data.len:
|
||||||
|
raise newException(PixieError, "Invalid BMP data size")
|
||||||
|
|
||||||
result = newImage(width, height)
|
result = newImage(width, height)
|
||||||
|
|
||||||
for y in 0 ..< result.height:
|
for y in 0 ..< result.height:
|
||||||
|
|
Loading…
Reference in a new issue