android bitmap绘制文字自动换行
摘要:
public Bitmap getNewBitMap(String text) { Bitmap newBitmap = Bitmap.createBitmap(120,150, Config.ARGB_4444); Canvas canvas = new Canvas(newBitmap); canvas.drawBitmap(bmp, 0, 0, null); TextPaint textPaint = new TextPaint(); textPaint.setAntiAlias(true); textP... 阅读全文
posted @ 2013-01-25 16:29 java豆子 阅读(8804) 评论(4) 推荐(1) 编辑