1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
| public class BasicImageFieldController extends FieldControllerBase implements IFieldController {
... @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { if (resultCode == Activity.RESULT_CANCELED) { return; } if (requestCode == ACTIVITY_SELECT_IMAGE) { handleSelectImageResult(data); } else if (requestCode == ACTIVITY_TAKE_PICTURE) { handleTakePictureResult(); }else if (requestCode == ACTIVITY_CROP_PICTURE) { File cropFile=new File(mTempImagePath); Uri cropUri = FileProvider.getUriForFile(mActivity, mActivity.getApplicationContext().getPackageName() + ".apkgfileprovider", cropFile); handleCropResult(cropUri); }
showCropButton++;
if (showCropButton == 1) { Button cropBtn = new Button(mActivity); cropBtn.setText(gtxt(R.string.crop_button)); cropBtn.setOnClickListener(v -> { File file = new File(mTempImagePath); Uri uri = FileProvider.getUriForFile(mActivity, mActivity.getApplicationContext().getPackageName() + ".apkgfileprovider", file); photoCrop(uri); }); mLinearLayout.addView(cropBtn); } }
public void photoCrop(Uri uri) { File image; File storageDir; String timeStamp = new SimpleDateFormat("yyyyMMddHHmmss", Locale.US).format(new Date()); storageDir = mActivity.getCacheDir(); try { image = File.createTempFile("img_" + timeStamp, ".jpg", storageDir); mTempImagePath = image.getPath(); Uri cropUri = Uri.fromFile(image); mField.setImagePath(mTempImagePath); mField.setHasTemporaryMedia(true);
Intent intent = new Intent("com.android.camera.action.CROP"); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION); } intent.setDataAndType(uri, "image/*"); intent.putExtra("aspectX", 1); intent.putExtra("aspectY", 1); intent.putExtra("outputX", 300); intent.putExtra("outputY", 300); intent.putExtra("scale", true); intent.putExtra("return-data", false);
intent.putExtra(MediaStore.EXTRA_OUTPUT, cropUri); intent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString()); intent.putExtra("noFaceDetection", true); mActivity.startActivityForResultWithoutAnimation(intent, ACTIVITY_CROP_PICTURE);
} catch (IOException e) { e.printStackTrace(); } }
private void showCropDialog(Uri uri) { new MaterialDialog.Builder(mActivity) .content(R.string.crop_image) .positiveText(R.string.dialog_ok) .negativeText(R.string.dialog_cancel) .onPositive((dialog, which) -> { photoCrop(uri); }) .build().show(); }
private void writeCropImage(Bitmap cropImage) {
if (cropImage != null) {
FileOutputStream out = null; File storageDir = mActivity.getCacheDir();
String fileName = mTempImagePath.substring(mTempImagePath.lastIndexOf("/") + 1, mTempImagePath.lastIndexOf("."));
if (!fileName.contains("crop")) { fileName += "_crop"; }
String outPath = storageDir.getAbsolutePath() + "/" + fileName + ".png";
try { out = new FileOutputStream(outPath); cropImage.compress(Bitmap.CompressFormat.PNG, 90, out); mField.setImagePath(outPath); mField.setHasTemporaryMedia(true); mTempImagePath = outPath; } catch (FileNotFoundException e) { Timber.e(e, "Error in BasicImageFieldController.rotateAndCompress()"); } finally { try { if (out != null) { out.close(); } } catch (IOException e) { e.printStackTrace(); } } } }
private void handleSelectImageResult(Intent data) { Uri selectedImage = getImageUri(mActivity, data); setPreviewImage(mTempImagePath, getMaxImageSize()); showCropDialog(selectedImage); }
private void handleTakePictureResult() { String imagePath = rotateAndCompress(mTempImagePath); mField.setImagePath(imagePath); mField.setHasTemporaryMedia(true); setPreviewImage(imagePath, getMaxImageSize()); mTempImagePath = imagePath; File file = new File(imagePath); Uri uri = FileProvider.getUriForFile(mActivity, mActivity.getApplicationContext().getPackageName() + ".apkgfileprovider", file); showCropDialog(uri); }
private void handleCropResult(Uri uri) { if (uri != null) { Bitmap photo = null; try { photo = BitmapFactory.decodeStream(mActivity.getContentResolver().openInputStream(uri)); writeCropImage(photo); setPreviewImage(mTempImagePath, getMaxImageSize()); } catch (FileNotFoundException e) { e.printStackTrace(); } Timber.i(""); } }
private Uri getImageUri(Context context,Intent data){ String imagePath = null; Uri uri = data.getData(); if(Build.VERSION.SDK_INT >= 19){ if(DocumentsContract.isDocumentUri(context,uri)){ String docId = DocumentsContract.getDocumentId(uri); if("com.android.providers.media.documents".equals(uri.getAuthority())){ String id = docId.split(":")[1]; String selection = MediaStore.Images.Media._ID+"="+id; imagePath = getImagePath(context,MediaStore.Images.Media.EXTERNAL_CONTENT_URI,selection); }else if("com.android.providers.downloads.documents".equals(uri.getAuthority())){ Uri contentUri = ContentUris.withAppendedId(Uri.parse("content://downloads/public_downloads"),Long.valueOf(docId)); imagePath = getImagePath(context,contentUri,null); } }else if("content".equalsIgnoreCase(uri.getScheme())){ imagePath = getImagePath(context,uri,null); }else if("file".equalsIgnoreCase(uri.getScheme())){ imagePath = uri.getPath(); } }else{ uri= data.getData(); imagePath = getImagePath(context,uri,null); } File file = new File(imagePath); mTempImagePath = imagePath; mField.setImagePath(imagePath); mField.setHasTemporaryMedia(false); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { uri = FileProvider.getUriForFile(context, mActivity.getApplicationContext().getPackageName() + ".apkgfileprovider", file); } else { uri = Uri.fromFile(file); }
return uri; }
private String getImagePath(Context context,Uri uri, String selection) { String path = null; Cursor cursor = context.getContentResolver().query(uri,null,selection,null,null); if(cursor != null){ if(cursor.moveToFirst()){ path = cursor.getString(cursor.getColumnIndex(MediaStore.Images.Media.DATA)); } cursor.close(); } return path; } }
|