-2

I have an images in asset folder , I want to share that images into another user like email , whats app etc .., Before that I want to draw some text on my share image form asset folder , and I want to overwrite into same asset folder then I want to share to the user.

parthi
  • 424
  • 1
  • 4
  • 16

2 Answers2

1

You cannot modify assets at runtime. You are welcome to copy data out of assets into the local filesystem, the modify your copy in the local filesystem.

CommonsWare
  • 954,112
  • 185
  • 2,315
  • 2,367
0
  1. Copy image to sd card like this
  2. Modify/watermark your image like this
  3. Share file like this
Community
  • 1
  • 1
Vinay W
  • 9,583
  • 7
  • 36
  • 47
  • 1
    While links are useful additions to an answer, a Stack Overflow answer needs to be useful without them, in case those links stop working. – CommonsWare Aug 12 '15 at 14:49