Pick and crop image not working choosing google photos





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I pick a image google photos only return can't find item.



This is the code to create intent for selecting photo:



 Intent i = new Intent(Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(i,REQUEST_CODE_FROM_GALLERY);


Following my activityresult code:



 @Override
public void onActivityResult(int requestCode, int resultCode, final Intent data) {
// TODO Auto-generated method stub
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == RESULT_OK) {
switch (requestCode) {
case REQUEST_CODE_FROM_GALLERY:
Utils.toast_center(Main_Theme.this,""+data.getData());
try {
String root = Environment.getExternalStorageDirectory().toString();
File mydir = new File(root + "/Image");
mydir.mkdirs();
String fname = "user_image.jpg";
final File file = new File(mydir, fname);
Intent intent1 = new Intent("com.android.camera.action.CROP");
intent1.setType("image/*");
intent1.setData(data.getData()); // Uri to the image you want to crop
intent1.putExtra("scale", true);
intent1.putExtra("circleCrop", new String(""));
intent1.putExtra("return-data", false);
intent1.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, Uri.fromFile(file));
startActivityForResult(intent1, 03);
}catch (ActivityNotFoundException e){
Utils.toast_center(Main_Theme.this,"Something Went Error. Try Again");
}
break;
case 03:

File filee = new File(Environment.getExternalStorageDirectory().toString() + "//Image/user_image.jpg");

Bitmap bmp = BitmapFactory.decodeFile(filee.getPath());
iconn.setImageBitmap(bmp);
settheame();
break;
}
}
}


How to solve this problem?










share|improve this question




















  • 1





    What is the precise error? What says the logcat?

    – shkschneider
    Jan 3 at 10:32






  • 1





    Android does not have a CROP Intent. There are many image cropping libraries available for Android. Please use one.

    – CommonsWare
    Jan 3 at 12:01


















0















I pick a image google photos only return can't find item.



This is the code to create intent for selecting photo:



 Intent i = new Intent(Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(i,REQUEST_CODE_FROM_GALLERY);


Following my activityresult code:



 @Override
public void onActivityResult(int requestCode, int resultCode, final Intent data) {
// TODO Auto-generated method stub
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == RESULT_OK) {
switch (requestCode) {
case REQUEST_CODE_FROM_GALLERY:
Utils.toast_center(Main_Theme.this,""+data.getData());
try {
String root = Environment.getExternalStorageDirectory().toString();
File mydir = new File(root + "/Image");
mydir.mkdirs();
String fname = "user_image.jpg";
final File file = new File(mydir, fname);
Intent intent1 = new Intent("com.android.camera.action.CROP");
intent1.setType("image/*");
intent1.setData(data.getData()); // Uri to the image you want to crop
intent1.putExtra("scale", true);
intent1.putExtra("circleCrop", new String(""));
intent1.putExtra("return-data", false);
intent1.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, Uri.fromFile(file));
startActivityForResult(intent1, 03);
}catch (ActivityNotFoundException e){
Utils.toast_center(Main_Theme.this,"Something Went Error. Try Again");
}
break;
case 03:

File filee = new File(Environment.getExternalStorageDirectory().toString() + "//Image/user_image.jpg");

Bitmap bmp = BitmapFactory.decodeFile(filee.getPath());
iconn.setImageBitmap(bmp);
settheame();
break;
}
}
}


How to solve this problem?










share|improve this question




















  • 1





    What is the precise error? What says the logcat?

    – shkschneider
    Jan 3 at 10:32






  • 1





    Android does not have a CROP Intent. There are many image cropping libraries available for Android. Please use one.

    – CommonsWare
    Jan 3 at 12:01














0












0








0








I pick a image google photos only return can't find item.



This is the code to create intent for selecting photo:



 Intent i = new Intent(Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(i,REQUEST_CODE_FROM_GALLERY);


Following my activityresult code:



 @Override
public void onActivityResult(int requestCode, int resultCode, final Intent data) {
// TODO Auto-generated method stub
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == RESULT_OK) {
switch (requestCode) {
case REQUEST_CODE_FROM_GALLERY:
Utils.toast_center(Main_Theme.this,""+data.getData());
try {
String root = Environment.getExternalStorageDirectory().toString();
File mydir = new File(root + "/Image");
mydir.mkdirs();
String fname = "user_image.jpg";
final File file = new File(mydir, fname);
Intent intent1 = new Intent("com.android.camera.action.CROP");
intent1.setType("image/*");
intent1.setData(data.getData()); // Uri to the image you want to crop
intent1.putExtra("scale", true);
intent1.putExtra("circleCrop", new String(""));
intent1.putExtra("return-data", false);
intent1.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, Uri.fromFile(file));
startActivityForResult(intent1, 03);
}catch (ActivityNotFoundException e){
Utils.toast_center(Main_Theme.this,"Something Went Error. Try Again");
}
break;
case 03:

File filee = new File(Environment.getExternalStorageDirectory().toString() + "//Image/user_image.jpg");

Bitmap bmp = BitmapFactory.decodeFile(filee.getPath());
iconn.setImageBitmap(bmp);
settheame();
break;
}
}
}


How to solve this problem?










share|improve this question
















I pick a image google photos only return can't find item.



This is the code to create intent for selecting photo:



 Intent i = new Intent(Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(i,REQUEST_CODE_FROM_GALLERY);


Following my activityresult code:



 @Override
public void onActivityResult(int requestCode, int resultCode, final Intent data) {
// TODO Auto-generated method stub
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == RESULT_OK) {
switch (requestCode) {
case REQUEST_CODE_FROM_GALLERY:
Utils.toast_center(Main_Theme.this,""+data.getData());
try {
String root = Environment.getExternalStorageDirectory().toString();
File mydir = new File(root + "/Image");
mydir.mkdirs();
String fname = "user_image.jpg";
final File file = new File(mydir, fname);
Intent intent1 = new Intent("com.android.camera.action.CROP");
intent1.setType("image/*");
intent1.setData(data.getData()); // Uri to the image you want to crop
intent1.putExtra("scale", true);
intent1.putExtra("circleCrop", new String(""));
intent1.putExtra("return-data", false);
intent1.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, Uri.fromFile(file));
startActivityForResult(intent1, 03);
}catch (ActivityNotFoundException e){
Utils.toast_center(Main_Theme.this,"Something Went Error. Try Again");
}
break;
case 03:

File filee = new File(Environment.getExternalStorageDirectory().toString() + "//Image/user_image.jpg");

Bitmap bmp = BitmapFactory.decodeFile(filee.getPath());
iconn.setImageBitmap(bmp);
settheame();
break;
}
}
}


How to solve this problem?







android xml






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 3 at 11:13









user5377037

7,607122861




7,607122861










asked Jan 3 at 10:26









Prabhakaran PPrabhakaran P

3616




3616








  • 1





    What is the precise error? What says the logcat?

    – shkschneider
    Jan 3 at 10:32






  • 1





    Android does not have a CROP Intent. There are many image cropping libraries available for Android. Please use one.

    – CommonsWare
    Jan 3 at 12:01














  • 1





    What is the precise error? What says the logcat?

    – shkschneider
    Jan 3 at 10:32






  • 1





    Android does not have a CROP Intent. There are many image cropping libraries available for Android. Please use one.

    – CommonsWare
    Jan 3 at 12:01








1




1





What is the precise error? What says the logcat?

– shkschneider
Jan 3 at 10:32





What is the precise error? What says the logcat?

– shkschneider
Jan 3 at 10:32




1




1





Android does not have a CROP Intent. There are many image cropping libraries available for Android. Please use one.

– CommonsWare
Jan 3 at 12:01





Android does not have a CROP Intent. There are many image cropping libraries available for Android. Please use one.

– CommonsWare
Jan 3 at 12:01












1 Answer
1






active

oldest

votes


















0














When you select google photo image then URI start likes "content://com.google.android.apps.photos.content/" and it's not from the local device.



Local uri like content://media/external/images/media/49518



So you need to first check the URI and based on that you need to get image from server or local image.



You can use DocumentsProvider API.



private Bitmap getBitmapFromUri(Uri uri) throws IOException 
{
ParcelFileDescriptor parcelFileDescriptor =
getContentResolver().openFileDescriptor(uri, "r");
FileDescriptor fileDescriptor = parcelFileDescriptor.getFileDescriptor();
Bitmap image = BitmapFactory.decodeFileDescriptor(fileDescriptor);
parcelFileDescriptor.close();
return image;
}





share|improve this answer
























  • its not working google photo

    – Prabhakaran P
    Jan 7 at 11:57












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54020410%2fpick-and-crop-image-not-working-choosing-google-photos%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














When you select google photo image then URI start likes "content://com.google.android.apps.photos.content/" and it's not from the local device.



Local uri like content://media/external/images/media/49518



So you need to first check the URI and based on that you need to get image from server or local image.



You can use DocumentsProvider API.



private Bitmap getBitmapFromUri(Uri uri) throws IOException 
{
ParcelFileDescriptor parcelFileDescriptor =
getContentResolver().openFileDescriptor(uri, "r");
FileDescriptor fileDescriptor = parcelFileDescriptor.getFileDescriptor();
Bitmap image = BitmapFactory.decodeFileDescriptor(fileDescriptor);
parcelFileDescriptor.close();
return image;
}





share|improve this answer
























  • its not working google photo

    – Prabhakaran P
    Jan 7 at 11:57
















0














When you select google photo image then URI start likes "content://com.google.android.apps.photos.content/" and it's not from the local device.



Local uri like content://media/external/images/media/49518



So you need to first check the URI and based on that you need to get image from server or local image.



You can use DocumentsProvider API.



private Bitmap getBitmapFromUri(Uri uri) throws IOException 
{
ParcelFileDescriptor parcelFileDescriptor =
getContentResolver().openFileDescriptor(uri, "r");
FileDescriptor fileDescriptor = parcelFileDescriptor.getFileDescriptor();
Bitmap image = BitmapFactory.decodeFileDescriptor(fileDescriptor);
parcelFileDescriptor.close();
return image;
}





share|improve this answer
























  • its not working google photo

    – Prabhakaran P
    Jan 7 at 11:57














0












0








0







When you select google photo image then URI start likes "content://com.google.android.apps.photos.content/" and it's not from the local device.



Local uri like content://media/external/images/media/49518



So you need to first check the URI and based on that you need to get image from server or local image.



You can use DocumentsProvider API.



private Bitmap getBitmapFromUri(Uri uri) throws IOException 
{
ParcelFileDescriptor parcelFileDescriptor =
getContentResolver().openFileDescriptor(uri, "r");
FileDescriptor fileDescriptor = parcelFileDescriptor.getFileDescriptor();
Bitmap image = BitmapFactory.decodeFileDescriptor(fileDescriptor);
parcelFileDescriptor.close();
return image;
}





share|improve this answer













When you select google photo image then URI start likes "content://com.google.android.apps.photos.content/" and it's not from the local device.



Local uri like content://media/external/images/media/49518



So you need to first check the URI and based on that you need to get image from server or local image.



You can use DocumentsProvider API.



private Bitmap getBitmapFromUri(Uri uri) throws IOException 
{
ParcelFileDescriptor parcelFileDescriptor =
getContentResolver().openFileDescriptor(uri, "r");
FileDescriptor fileDescriptor = parcelFileDescriptor.getFileDescriptor();
Bitmap image = BitmapFactory.decodeFileDescriptor(fileDescriptor);
parcelFileDescriptor.close();
return image;
}






share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 3 at 10:49









ChiragChirag

47.8k22138187




47.8k22138187













  • its not working google photo

    – Prabhakaran P
    Jan 7 at 11:57



















  • its not working google photo

    – Prabhakaran P
    Jan 7 at 11:57

















its not working google photo

– Prabhakaran P
Jan 7 at 11:57





its not working google photo

– Prabhakaran P
Jan 7 at 11:57




















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54020410%2fpick-and-crop-image-not-working-choosing-google-photos%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter