All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.deeplearning4j.ui.api.Utils Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
package org.deeplearning4j.ui.api;

import java.awt.*;

public class Utils {

    private Utils() {}

    /** Convert an AWT color to a hex color string, such as #000000 */
    public static String colorToHex(Color color) {
        return String.format("#%02x%02x%02x", color.getRed(), color.getGreen(), color.getBlue());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy