Compressor
Compressor copied to clipboard
How to compress to less than 1 MB ?
How can I compress images under xx MB?
you can get file size after compress finished . if file size greater than xxMB, you can compress again.
I think we should have a function that is the size of the image.
you can get file size after compress finished . if file size greater than xxMB, you can compress again.
modify maxHeight and maxWidth?
you can get file size after compress finished . if file size greater than xxMB, you can compress again.
modify maxHeight and maxWidth?
You can use this method to get the file size:
`
public static String getAutoFileOrFilesSize(String filePath) {
File file = new File(filePath);
long blockSize = 0;
try {
if (file.isDirectory()) {
blockSize = getFileSizes(file);
} else {
blockSize = getFileSize(file);
}
} catch (Exception e) {
e.printStackTrace();
}
return FormetFileSize(blockSize);
}
`