Java Hex to Color hexToColor(String colorHex)

Here you can find the source of hexToColor(String colorHex)

Description

Hex to color.

License

Apache License

Parameter

Parameter Description
colorHex the color hex

Return

the color

Declaration

public static Color hexToColor(String colorHex) 

Method Source Code

//package com.java2s;
/*/*from www .  j  av  a 2  s .  com*/
 * Copyright 2002-2016 Jalal Kiswani.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.awt.Color;

public class Main {
    /**
     * Hex to color.
     *
     * @param colorHex
     *            the color hex
     * @return the color
     */
    public static Color hexToColor(String colorHex) {
        final String replace = colorHex.replace("#", "0x");
        // System.out.println(replace);
        return Color.decode(replace);
    }
}

Related

  1. hexToColor(final String hex)
  2. hexToColor(String color)
  3. hexToColor(String color)
  4. hexToColor(String hex)
  5. hexToColor(String hexStr, boolean throwException, int[] buffer)
  6. hexToColor(String hexString)
  7. hexToColor(String hexString)