Is there a way to add text to a bitmap with rotation and text customization, and them save the bitmap with text to the device storage. Also can this be applied to adding images to an image?
Asked
Active
Viewed 461 times
1
-
this is "image processing", it's too broad to explain, you should study how to manipulate Bitmaps or search for a library – user3290180 Aug 16 '15 at 08:38
1 Answers
3
Just create a Canvas backed up by a Bitmap with new Canvas(myMutableBitmap)
and do your text drawing in it. Then save the bitmap back with myMutableBitmap.compress()
.

Gil Vegliach
- 3,542
- 2
- 25
- 37