WEB开发网
开发学院WEB开发Jsp Canvas里断行的方法 阅读

Canvas里断行的方法

 2008-01-05 08:06:01 来源:WEB开发网   
核心提示:Canvas里断行的方法 代码:/** * Wrap the text to lines by the specified font, text, maxWidth. */public String[] format(String text, int maxWidth, int lines) { String[]

  Canvas里断行的方法

代码:--------------------------------------------------------------------------------
/**
* Wrap the text to lines by the specified font, text, maxWidth.
*/
public String[] format(String text, int maxWidth, int lines) {
String[] result = null;
if (lines > 64 lines < 0) {
lines = 64;
}

String[] temPR = new String[lines];
int lineIndex = 0;
if (text != null) {
int len = text.length();
int index0 = 0;
int index1 = 0;
for (; lineIndex < lines; lineIndex++) {
int widthes = 0;
for (index0 = index1; index1 < len; index1++) {
widthes += IMCanvas.textFont.stringWidth("" + text.charAt(index1));
if (widthes > maxWidth) {
break;
}
}
tempR[lineIndex] = new String(text.substring(index0, index1));
if (index1 >= len) {
lineIndex++;
break;
}
}
}
result = new String[lineIndex];
System.arraycopy(tempR, 0, result, 0, lineIndex);
return result;
}

Tags:Canvas 断行 方法

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接