mirror of
https://github.com/status-im/nimPNG.git
synced 2025-01-30 22:34:55 +00:00
commit
d21b7035bf
4
nimz.nim
4
nimz.nim
@ -1221,8 +1221,8 @@ proc nzDeflateInit*(input: string): nzStream =
|
||||
|
||||
proc nzInflateInit*(input: string): nzStream =
|
||||
var nz = nzInit()
|
||||
nz.data = ""
|
||||
nz.bits.data = input
|
||||
nz.data = newStringOfCap(1024 * 1024 * 5) # Allocate 5MB in advance
|
||||
shallowCopy(nz.bits.data, input)
|
||||
nz.bits.bitpointer = 0
|
||||
nz.bits.databitlen = input.len * 8
|
||||
nz.mode = nzsInflate
|
||||
|
Loading…
x
Reference in New Issue
Block a user