MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / getStringWidth

Method getStringWidth

ij/src/main/java/ij/util/Java2.java:35–38  ·  view source on GitHub ↗
(String s, FontMetrics fontMetrics, Graphics g)

Source from the content-addressed store, hash-verified

33 }
34
35 public static int getStringWidth(String s, FontMetrics fontMetrics, Graphics g) {
36 java.awt.geom.Rectangle2D r = fontMetrics.getStringBounds(s, g);
37 return (int)r.getWidth();
38 }
39
40 public static void setBilinearInterpolation(Graphics g, boolean bilinearInterpolation) {
41 Graphics2D g2d = (Graphics2D)g;

Callers 8

getWidthMethod · 0.45
clearMethod · 0.45
getWidthMethod · 0.45
drawExpStringMethod · 0.45
stringToPixelsMethod · 0.45
drawShapeMethod · 0.45
drawLegendMethod · 0.45

Calls 2

getStringBoundsMethod · 0.45
getWidthMethod · 0.45

Tested by

no test coverage detected