views:

36

answers:

1

Is there a way to encode a string as a bitmap? Or a drawable?

Thanks Chris

A: 

Create a Bitmap, create a Canvas for it, and call Canvas.drawText. That should do! (That's what you meant with "encoding" the string, right?)

EDIT: Duh, I realized you're looking for something like a watermark, like DigiMark?

EboMike