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 markers-for-android 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.
Original issue reported on code.google.com by promptne...@gmail.com on 29 Oct 2013 at 6:45
Original issue reported on code.google.com by
promptne...@gmail.com
on 29 Oct 2013 at 6:45