Open Foxtrot- opened 1 year ago
The size of the bmp file is increased up to almost the maxSizeMB value of the options given to the compressor.
bmp
maxSizeMB
Given those options :
const options = { maxSizeMB: 1, useWebWorker: true, maxIteration: 10000, };
and a file of 333Ko, we are getting a file of 995Ko as the output of the compressing function.
333Ko
995Ko
Issue
The size of the
bmp
file is increased up to almost themaxSizeMB
value of the options given to the compressor.Example
Given those options :
and a file of
333Ko
, we are getting a file of995Ko
as the output of the compressing function.