在android中的文本到图像

Alt*_*taf 1 android

我正在开发一个应用程序,我需要从文本生成图像并将该图像存储到SD卡.
任何人都可以告诉我一个库(就像java的textimagegenerator)我需要Android兼容的库或源我可以用于此吗?

Chr*_*CVB 5

TextView textView = new TextView(activity.getContext());
textView.setText("Hello World");
textView.setDrawingCacheEnabled(true);
textView.destroyDrawingCache();
textView.buildDrawingCache();
Bitmap bitmap = getTransparentBitmapCopy(textView.getDrawingCache());


private Bitmap getTransparentBitmapCopy(Bitmap source)
{
    int width =  source.getWidth();
    int height = source.getHeight();
    Bitmap copy = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
    int[] pixels = new int[width * height];
    source.getPixels(pixels, 0, width, 0, 0, width, height);
    copy.setPixels(pixels, 0, width, 0, 0, width, height);
    return copy;
}
Run Code Online (Sandbox Code Playgroud)