1. 程式人生 > >android採用 Luban 進行圖片壓縮

android採用 Luban 進行圖片壓縮

 Luban.get(this).load(file).putGear(Luban.THIRD_GEAR).setCompressListener(new OnCompressListener() {
                @Override
                public void onStart() {
                    showLoading();
                }

                @Override
                public void onSuccess(File file) {
                    System.out.println("壓縮成功");
                    upLoadImage(file);
                }

                @Override
                public void onError(Throwable e) {
                    showLoadingSuccess();
                    ToastUtil.showToast(PersonalInformationActivity.this,"圖片錯誤",0);
                }
            }).launch();