-1
如何在android中將文本轉換爲位圖?我面臨的一個問題是,我需要將文本轉換爲位圖,以便我可以創建文本的鏡像。使用如何在android中將文本轉換爲位圖?
BitmapDrawable flip(BitmapDrawable d)
{
Matrix m = new Matrix();
m.preScale(-1, 1);
Bitmap src = d.getBitmap();
Bitmap dst = Bitmap.createBitmap(src, 0, 0, src.getWidth(), src.getHeight(), m, false);
dst.setDensity(DisplayMetrics.DENSITY_DEFAULT);
return new BitmapDrawable(dst);
}