我使用的是画布来创建一些背景和一些文本的可绘制。 提拉被用作一个EditText内的化合物可绘制。
该文本通过在画布上的drawText()绘制的,但我确实有在某些情况下绘制文本的y位置的问题。 在这些情况下的一些文字部分被切断(见图片链接)。
人物没有定位的问题:
http://i50.tinypic.com/zkpu1l.jpg
与定位的问题人物,文字中包含“G”,“J”,“Q”等:
http://i45.tinypic.com/vrqxja.jpg
你可以找到一个代码片段重现跌破发行。
有哪位高手知道如何确定y位置相应的位置?
public void writeTestBitmap(String text, String fileName) {
// font size
float fontSize = new EditText(this.getContext()).getTextSize();
fontSize+=fontSize*0.2f;
// paint to write text with
Paint paint = new Paint();
paint.setStyle(Style.FILL);
paint.setColor(Color.DKGRAY);
paint.setAntiAlias(true);
paint.setTypeface(Typeface.SERIF);
paint.setTextSize((int)fontSize);
// min. rect of text
Rect textBounds = new Rect();
paint.getTextBounds(text, 0, text.length(), textBounds);
// create bitmap for text
Bitmap bm = Bitmap.createBitmap(textBounds.width(), textBounds.height(), Bitmap.Config.ARGB_8888);
// canvas
Canvas canvas = new Canvas(bm);
canvas.drawARGB(255, 0, 255, 0);// for visualization
// y = ?
canvas.drawText(text, 0, textBounds.height(), paint);
try {
FileOutputStream out = new FileOutputStream(fileName);
bm.compress(Bitmap.CompressFormat.JPEG, 100, out);
} catch (Exception e) {
e.printStackTrace();
}
}