*/
public static void drawString(int size, int x, int y, String str, Color col, int rule)
{
UnicodeFont f = extractFont(size, rule);
f.drawString(x, y, str, col);
}
public static void drawString(int size, int x, int y, String str, int rule)
{
drawString(size, x, y, str, Color.black, rule);