Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Option to edit picture in picture editing apps #48

Closed
vanniktech opened this issue Mar 1, 2016 · 2 comments
Closed

Option to edit picture in picture editing apps #48

vanniktech opened this issue Mar 1, 2016 · 2 comments

Comments

@vanniktech
Copy link
Contributor

It would be nice to have an option to let the user still nonetheless choose another application to edit the picture further (e.g. Google Photos).

This can be archived using

Intent editIntent = new Intent(Intent.ACTION_EDIT);
editIntent.setDataAndType(uri, "image/*");
editIntent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(Intent.createChooser(editIntent, null));

Is there any interest in adding this to the core library?

@shliama
Copy link
Contributor

shliama commented Apr 20, 2016

I think it is an excess feature for the library. You can always add these four lines of code in your onActivityResult method and pass resulting Uri.

@shliama shliama closed this as completed Apr 20, 2016
@vanniktech
Copy link
Contributor Author

The only problem would be then that this 'trigger' would need to happen on another screen and not the one from uCrop which makes the feature itself a bit cumbersome.

Is there anyway to add custom views to this library and then also update the picture? To basically enable a back and forth between uCrop and other editing apps?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants