Package ij.plugin

Class Colors

    • Field Detail

      • colors

        public static final String[] colors
    • Constructor Detail

      • Colors

        public Colors()
    • Method Detail

      • run

        public void run​(String arg)
        Description copied from interface: PlugIn
        This method is called when the plugin is loaded. 'arg', which may be blank, is the argument specified for this plugin in IJ_Props.txt.
        Specified by:
        run in interface PlugIn
      • getRed

        public static int getRed​(String hexColor)
      • getGreen

        public static int getGreen​(String hexColor)
      • getBlue

        public static int getBlue​(String hexColor)
      • hexToColor

        public static String hexToColor​(String hex)
        Converts a hex color (e.g., "ffff00") into "red", "green", "yellow", etc. Returns null if the color is not one of the eight primary colors.
      • hexToColor2

        public static String hexToColor2​(String hex)
        Converts a hex color (e.g., "ffff00") into "Red", "Green", "Yellow", etc. Returns null if the color is not one of the eight primary colors.
      • colorToString

        public static String colorToString​(Color color)
        Converts a Color into a string ("red", "green", #aa55ff, etc.).
      • colorToString2

        public static String colorToString2​(Color color)
        Converts a Color into a string ("Red", "Green", #aa55ff, etc.).
      • getColors

        public static String[] getColors​(String... moreColors)