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

Method setBackgroundColor

ij/src/main/java/ij/IJ.java:1755–1757  ·  view source on GitHub ↗

Sets the background color.

(int red, int green, int blue)

Source from the content-addressed store, hash-verified

1753
1754 /** Sets the background color. */
1755 public static void setBackgroundColor(int red, int green, int blue) {
1756 setColor(red, green, blue, false);
1757 }
1758
1759 static void setColor(int red, int green, int blue, boolean foreground) {
1760 Color c = Colors.toColor(red, green, blue);

Callers 2

setBackgroundColorMethod · 0.95
straightenRotatedRectMethod · 0.95

Calls 1

setColorMethod · 0.95

Tested by

no test coverage detected