evernote-sdk-android icon indicating copy to clipboard operation
evernote-sdk-android copied to clipboard

Skitch Integration

Open GitHubDroid opened this issue 11 years ago • 4 comments

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.

GitHubDroid avatar Oct 18 '13 14:10 GitHubDroid

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

parallelcross avatar Oct 18 '13 20:10 parallelcross

Thanks for the help. This is good stuff. How could I go about launching through an EDIT intent with an existing image as background. And when finished marking up the image have it save to a specific location ?

Intent shareIntent = new Intent(Intent.ACTION_EDIT); shareIntent.setType("image/png");
shareIntent.putExtra(Intent.EXTRA_STREAM,Uri.fromFile(file)); shareIntent.putExtra(Intent.EXTRA_TEXT,"My Image");

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.

GitHubDroid avatar Oct 30 '13 14:10 GitHubDroid

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.

https://gist.github.com/ntkachov/7307531

ntkachov avatar Nov 04 '13 19:11 ntkachov

Is it really working? I have tried but it didn't work for me. Can you please provide me a working sample? Skitch tools for image annotations are the actual things which I am looking for quite long time.

rishabhMaltare avatar Apr 21 '15 18:04 rishabhMaltare