C Library Functions  - closest_color_name (3)

NAME

closest_color_name(3f) - [M_pixel:COLOR] returns the closest name for the given RGB values. (LICENSE:PD)

CONTENTS

Synopsis
Description
Options
Returns
Example
Author
License

SYNOPSIS

subroutine closest_color_name(r,g,b,closestname)

    real,intent(in)               :: r,g,b
    character(len=20),intent(out) :: closestname

DESCRIPTION

closest_color_name() returns the closest name for the given RGB values. Most X11 Windows color names are supported.

OPTIONS

R red component, range of 0 to 100
G green component, range of 0 to 100
B blue component, range of 0 to 100

RETURNS

CLOSESTNAME
  name of color found closest to given RGB value</li>

EXAMPLE

Sample program

       program demo_closest_color_name
       use M_pixel, only : closest_color_name
       implicit none
       character(len=100) :: string ! at least 20 characters
          string=’ ’

call closest_color_name(100.0, 0.0, 0.0,string) write(*,*)trim(string)

call closest_color_name( 0.0,100.0, 0.0,string) write(*,*)trim(string)

call closest_color_name( 0.0, 0.0,100.0,string) write(*,*)trim(string)

end program demo_closest_color_name

Results:

       red
       green
       blue

AUTHOR

John S. Urban

LICENSE

Public Domain


Nemo Release 3.1 closest_color_name (3) July 22, 2023
Generated by manServer 1.08 from 45f413fc-16d9-4932-b619-1b7b0af0ac20 using man macros.