El método toHex() se utiliza para convertir cualquier tipo de representación de color especificada en su representación HEX (hexadecimal).
Sintaxis:
toHex()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve la representación del color en formato HEX.
Ejemplo 1:
HTML
<!DOCTYPE html> <html> <head> <!-- Adding the FabricJS library --> <script src= "https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js"> </script> </head> <body> <script type="text/javascript"> // Calling the toHex() function over // the specified rgb and rgba color format console.log(new fabric.Color('rgb(10, 20, 30)').toHex()); console.log(new fabric.Color('rgba(22, 255, 120, 0.9)').toHex()); </script> </body> </html>
Producción:
0A141E 16FF78
Ejemplo 2:
HTML
<!DOCTYPE html> <html> <head> <!-- Adding the FabricJS library --> <script src= "https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js"> </script> </head> <body> <script type="text/javascript"> // Initializing some color values in different color format var A = "rgb(0, 12, 50)"; var B = "rgba(10, 13, 250, 0.1)"; var C = "hsl(0, 100%, 50%)"; var D = "hsla(10%, 0, 0, 0.2)"; // Calling the toHex() function over // the above specified color values console.log(new fabric.Color(A).toHex()); console.log(new fabric.Color(B).toHex()); console.log(new fabric.Color(C).toHex()); console.log(new fabric.Color(D).toHex()); </script> </body> </html>
Producción:
000C32 0A0DFA FF0000 000000
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA