We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
fix: BMP output size may increase in some situations #195
5815b6e
No branches or pull requests
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.The text was updated successfully, but these errors were encountered: