Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.1 - English

Change language to:
Français - 日本語 - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab Help >> Graphics > Color management > rgb2name

rgb2name

returns the name of a color

Syntax

names=rgb2name(r,g,b)
names=rgb2name(rgb)

Arguments

r,g,b

RGB integer values of a color.

rgb

vector of RGB integer values of a color.

names

names of the color.

Description

rgb2name returns the color name corresponding to the RGB values given by its argument. A vector of color names can also be returned if the color has more than 1 name. r, g and b must be integers between 0 and 255 corresponding to colors components red, green and blue. As usual 0 means no intensity and 255 means all the intensity of the color. RGB values can also be given by a vector [r,g,b].

If no color is found [] is returned.

The list of all known colors is given by color_list.

Examples

rgb2name(255,128,128)
rgb2name([255 215 0])
// get color #10 of the current colormap and find its name
cmap=get(gcf(),"color_map");
rgb2name(cmap(10,:)*255)

See also

  • color — returns the color id of a color
  • color_list — list of named colors
  • name2rgb — returns the RGB values of a named color
Report an issue
<< name2rgb Color management uigetcolor >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Feb 12 19:26:50 CET 2018