I'm developing android application to write ABC(letters)..on android bitmap images.and i want write letters on bitmap..any one can help me?
Asked
Active
Viewed 1,688 times
0
-
for FSM sake ... so you wana draw text on canvas ... canvas, draw text, canvas, drawtext, canvas, drawText ... – Selvin Jul 09 '13 at 10:43
-
one example using canvas is here http://obviam.net/index.php/using-bitmap-fonts-in-android/ – Yogesh Tatwal Jul 09 '13 at 10:47
1 Answers
0
This seems to be a duplicate of creating an empty bitmap and drawing though canvas in android . You need to do Cancas c = new Canvas(bitmap);
and then draw onto the canvas using one of the the drawText
methods.