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;
}
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?

add a comment |
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?

1
What is the precise error? What says the logcat?
– shkschneider
Jan 3 at 10:32
1
Android does not have aCROP
Intent
. There are many image cropping libraries available for Android. Please use one.
– CommonsWare
Jan 3 at 12:01
add a comment |
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?

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?


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 aCROP
Intent
. There are many image cropping libraries available for Android. Please use one.
– CommonsWare
Jan 3 at 12:01
add a comment |
1
What is the precise error? What says the logcat?
– shkschneider
Jan 3 at 10:32
1
Android does not have aCROP
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
add a comment |
1 Answer
1
active
oldest
votes
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;
}
its not working google photo
– Prabhakaran P
Jan 7 at 11:57
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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;
}
its not working google photo
– Prabhakaran P
Jan 7 at 11:57
add a comment |
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;
}
its not working google photo
– Prabhakaran P
Jan 7 at 11:57
add a comment |
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;
}
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;
}
answered Jan 3 at 10:49
ChiragChirag
47.8k22138187
47.8k22138187
its not working google photo
– Prabhakaran P
Jan 7 at 11:57
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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