-
Notifications
You must be signed in to change notification settings - Fork 167
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
Skitch Integration #42
Comments
Skitch supports the ACTION_EDIT on its image canvas. It will accept a png or a jpeg. http://developer.android.com/reference/android/content/Intent.html#ACTION_EDIT |
Thanks for the help. This is good stuff. How could I go about launching through an EDIT intent with an Intent shareIntent = new Intent(Intent.ACTION_EDIT); shareIntent.setType("image/png"); Would something like this work? But how would I have skitch save the image after editing in the specified folder where the image came from with the same file name and overwrite it? Any help would be great. Thank you in advance. |
We have a small gist that might help. Feel free to use this in your application. It creates the ACTION_EDIT intent and sends it to skitch. If skitch doesn't support it or isn't installed, it will send the user to the Android Market and allow them to install it. |
Is it really working? I have tried but it didn't work for me. Can you please provide me a working sample? |
Are there any resources for integrating and customizing skitch?
I am trying to pass a .png file from my android app to skitch's canvas for markup. Skitch can be used as an excellent markup tool and I would love to utilize its capability in my app rather then recreate the wheel. Any help or info would be greatly appreciated. Thanks.
The text was updated successfully, but these errors were encountered: