|
|
|
@ -27,31 +27,33 @@ public class DrawUtils { |
|
|
|
|
drawOutlineText(g,font,x,y,0,0,font_thickness,outline_thickness,text_color,shadow_color,message); |
|
|
|
|
} |
|
|
|
|
static void drawOutlineText(Graphics g, Font font, double x, double y, double xoffset, double yoffset, int font_thickness, int outline_thickness, Color text_color, Color shadow_color, String message) { |
|
|
|
|
AttributedString as = new AttributedString(message); |
|
|
|
|
as.addAttribute(TextAttribute.FONT, font); |
|
|
|
|
g.setColor(shadow_color); |
|
|
|
|
Graphics2D g2 = (Graphics2D) g; |
|
|
|
|
FontRenderContext frc = g2.getFontMetrics(font).getFontRenderContext(); |
|
|
|
|
GlyphVector gv = font.createGlyphVector(frc, message); |
|
|
|
|
Shape shape = gv.getOutline((int)(x+xoffset),(int)(y+yoffset)); |
|
|
|
|
g2.setClip(null); |
|
|
|
|
g2.setStroke(new BasicStroke(font_thickness + outline_thickness*2)); |
|
|
|
|
g2.setColor(shadow_color); |
|
|
|
|
g2.setRenderingHint( |
|
|
|
|
RenderingHints.KEY_ANTIALIASING, |
|
|
|
|
RenderingHints.VALUE_ANTIALIAS_ON); |
|
|
|
|
g2.draw(shape); |
|
|
|
|
GlyphVector gv2 = font.createGlyphVector(frc, message); |
|
|
|
|
Shape shape2 = gv2.getOutline((int)(x+xoffset),(int)(y+yoffset)); |
|
|
|
|
g2.setClip(null); |
|
|
|
|
g2.setStroke(new BasicStroke(font_thickness)); |
|
|
|
|
g2.setColor(text_color); |
|
|
|
|
g2.setRenderingHint( |
|
|
|
|
RenderingHints.KEY_ANTIALIASING, |
|
|
|
|
RenderingHints.VALUE_ANTIALIAS_ON); |
|
|
|
|
g2.draw(shape2); |
|
|
|
|
g2.setColor(text_color); |
|
|
|
|
g2.drawString(as.getIterator(),(int)(x+xoffset),(int)(y+yoffset)); |
|
|
|
|
if (message.length()>0) { |
|
|
|
|
AttributedString as = new AttributedString(message); |
|
|
|
|
as.addAttribute(TextAttribute.FONT, font); |
|
|
|
|
g.setColor(shadow_color); |
|
|
|
|
Graphics2D g2 = (Graphics2D) g; |
|
|
|
|
FontRenderContext frc = g2.getFontMetrics(font).getFontRenderContext(); |
|
|
|
|
GlyphVector gv = font.createGlyphVector(frc, message); |
|
|
|
|
Shape shape = gv.getOutline((int)(x+xoffset),(int)(y+yoffset)); |
|
|
|
|
g2.setClip(null); |
|
|
|
|
g2.setStroke(new BasicStroke(font_thickness + outline_thickness*2)); |
|
|
|
|
g2.setColor(shadow_color); |
|
|
|
|
g2.setRenderingHint( |
|
|
|
|
RenderingHints.KEY_ANTIALIASING, |
|
|
|
|
RenderingHints.VALUE_ANTIALIAS_ON); |
|
|
|
|
g2.draw(shape); |
|
|
|
|
GlyphVector gv2 = font.createGlyphVector(frc, message); |
|
|
|
|
Shape shape2 = gv2.getOutline((int)(x+xoffset),(int)(y+yoffset)); |
|
|
|
|
g2.setClip(null); |
|
|
|
|
g2.setStroke(new BasicStroke(font_thickness)); |
|
|
|
|
g2.setColor(text_color); |
|
|
|
|
g2.setRenderingHint( |
|
|
|
|
RenderingHints.KEY_ANTIALIASING, |
|
|
|
|
RenderingHints.VALUE_ANTIALIAS_ON); |
|
|
|
|
g2.draw(shape2); |
|
|
|
|
g2.setColor(text_color); |
|
|
|
|
g2.drawString(as.getIterator(),(int)(x+xoffset),(int)(y+yoffset)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
public static void drawCenteredOutlineText(Graphics g, Font font, double x, double y, int outline_size, Color text_color, Color shadow_color, String message) { |
|
|
|
|
Rectangle2D textBounds = TextUtils.calculateStringBoundsFont(message, font); |
|
|
|
|