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
有一行压缩代码如下: bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos); 因为大部分图片还是JPG的,这样会导致本来不大的jpg图片保存到本地后变的很大(100k的jpg保存到本地可能变成1M),而且这个质量参数也不能调。 我觉得这个方法可以优化。
bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos);
The text was updated successfully, but these errors were encountered:
你可以fork下项目,提交一个PR。
Sorry, something went wrong.
No branches or pull requests
有一行压缩代码如下:
bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos);
因为大部分图片还是JPG的,这样会导致本来不大的jpg图片保存到本地后变的很大(100k的jpg保存到本地可能变成1M),而且这个质量参数也不能调。
我觉得这个方法可以优化。
The text was updated successfully, but these errors were encountered: