我想壓縮一個文件夾中的所有圖像,我使用了這個 Compressor 庫。我在壓縮文件時收到了這種類型的警告,我無法理解我收到了圖像壓縮或覆蓋接口方法的警告。ExifInterface: Skip the tag entry since tag number is not defined: 544 Skip the tag entry since tag number is not defined: 545 Skip the tag entry since tag number is not defined: 546 Skip the tag entry since tag number is not defined: 547 Skip the tag entry since tag number is not defined: 548 Skip the tag entry since tag number is not defined: 549 Skip the tag entry since tag number is not defined: 2代碼:@Overridepublic void setQualityRatio(Integer qualityNum) { for (int i=0; i<orgFileList.size(); i++){ try { File file = new Compressor(CompressMultipleActivity.this).setQuality(qualityNum).compressToFile(orgFileList.get(i)); currFileList.set(i, file); }catch (IOException e){ Toast.makeText(CompressMultipleActivity.this, "Failed to compress image, Try again later!", Toast.LENGTH_SHORT).show(); } }}我這里有什么問題?為什么我會收到此警告,我該如何解決?
添加回答
舉報
0/150
提交
取消