* Get the outline of a character given the character name
*/
@Override
protected synchronized GeneralPath getOutline (String name, float width) {
int idx;
PostTable post = (PostTable) this.font.getTable ("post");
if (post != null) {
idx = post.getGlyphNameIndex (name);
if (idx != 0) {
return getOutline (idx, width);
}
return null;
}