/usr/share/perl5/GD/Graph/colour.pm is in libgd-graph-perl 1.48-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | #==========================================================================
# Copyright (c) 1995-1998 Martien Verbruggen
#--------------------------------------------------------------------------
#
# Name:
# GD::Graph::colour.pm
#
# Description:
# Package of colour manipulation routines, to be used
# with GD::Graph.
#
# $Id: colour.pm,v 1.10 2005/12/14 04:09:40 ben Exp $
#
#==========================================================================
package GD::Graph::colour;
($GD::Graph::colour::VERSION) = '$Revision: 1.10 $' =~ /\s([\d.]+)/;
=head1 NAME
GD::Graph::colour - Colour manipulation routines for use with GD::Graph
=head1 SYNOPSIS
use GD::Graph::colour qw(:colours :lists :files :convert);
=head1 DESCRIPTION
The B<GD::Graph::colour> package provides a few routines to work with
colours. The functionality of this package is mainly defined by what is
needed, now and historically, by the GD::Graph modules.
=cut
use vars qw( @EXPORT_OK %EXPORT_TAGS );
use strict;
require Exporter;
use Carp;
@GD::Graph::colour::ISA = qw( Exporter );
@EXPORT_OK = qw(
_rgb _luminance _hue add_colour
colour_list sorted_colour_list
read_rgb
hex2rgb rgb2hex
);
%EXPORT_TAGS = (
colours => [qw( add_colour _rgb _luminance _hue )],
lists => [qw( colour_list sorted_colour_list )],
files => [qw( read_rgb )],
convert => [qw( hex2rgb rgb2hex )],
);
my %RGB = (
white => [0xFF,0xFF,0xFF],
lgray => [0xBF,0xBF,0xBF],
gray => [0x7F,0x7F,0x7F],
dgray => [0x3F,0x3F,0x3F],
black => [0x00,0x00,0x00],
lblue => [0x00,0x00,0xFF],
blue => [0x00,0x00,0xBF],
dblue => [0x00,0x00,0x7F],
gold => [0xFF,0xD7,0x00],
lyellow => [0xFF,0xFF,0x00],
yellow => [0xBF,0xBF,0x00],
dyellow => [0x7F,0x7F,0x00],
lgreen => [0x00,0xFF,0x00],
green => [0x00,0xBF,0x00],
dgreen => [0x00,0x7F,0x00],
lred => [0xFF,0x00,0x00],
red => [0xBF,0x00,0x00],
dred => [0x7F,0x00,0x00],
lpurple => [0xFF,0x00,0xFF],
purple => [0xBF,0x00,0xBF],
dpurple => [0x7F,0x00,0x7F],
lorange => [0xFF,0xB7,0x00],
orange => [0xFF,0x7F,0x00],
pink => [0xFF,0xB7,0xC1],
dpink => [0xFF,0x69,0xB4],
marine => [0x7F,0x7F,0xFF],
cyan => [0x00,0xFF,0xFF],
lbrown => [0xD2,0xB4,0x8C],
dbrown => [0xA5,0x2A,0x2A],
);
=head1 FUNCTIONS
=head2 colour_list( I<number of colours> )
Returns a list of I<number of colours> colour names known to the package.
Exported with the :lists tag.
=cut
sub colour_list
{
my $n = ( $_[0] ) ? $_[0] : keys %RGB;
return (keys %RGB)[0 .. $n-1];
}
=head2 sorted_colour_list( I<number of colours> )
Returns a list of I<number of colours> colour names known to the package,
sorted by luminance or hue.
B<NB.> Right now it always sorts by luminance. Will add an option in a later
stage to decide sorting method at run time.
Exported with the :lists tag.
=cut
sub sorted_colour_list
{
my $n = $_[0] ? $_[0] : keys %RGB;
return (sort by_luminance keys %RGB)[0 .. $n-1];
# return (sort by_hue keys %rgb)[0..$n-1];
sub by_luminance { _luminance(@{$RGB{$b}}) <=> _luminance(@{$RGB{$a}}) }
sub by_hue { _hue(@{$RGB{$b}}) <=> _hue(@{$RGB{$a}}) }
}
=head2 _rgb( I<colour name> )
Returns a list of the RGB values of I<colour name>. if the colour name
is a string of the form that is acceptable to the hex2rgb sub, then the
colour will be added to the list dynamically.
Exported with the :colours tag.
=cut
my %warned_clrs = ();
# return the RGB values of the colour name
sub _rgb
{
my $clr = shift or return;
# Try adding the colour if it doesn't exist yet. It may be of a
# parseable form
add_colour($clr) unless exists $RGB{$clr};
my $rgb_ref = $RGB{$clr};
if (!defined $rgb_ref)
{
$rgb_ref = $RGB{'black'};
unless ($warned_clrs{$clr})
{
$warned_clrs{$clr}++;
carp "Colour $clr is not defined, reverting to black";
}
};
@{$rgb_ref};
}
=head2 _hue( I<R,G,B> )
Returns the hue of the colour with the specified RGB values.
Exported with the :colours tag.
=head2 _luminance( I<R,G,B> )
Returns the luminance of the colour with the specified RGB values.
Exported with the :colours tag.
=cut
# return the luminance of the colour (RGB)
sub _luminance
{
(0.212671 * $_[0] + 0.715160 * $_[1] + 0.072169 * $_[2])/0xFF
}
# return the hue of the colour (RGB)
sub _hue
{
($_[0] + $_[1] + $_[2])/(3 * 0xFF)
}
=head2 add_colour(colourname => [$r, $g, $b]) or
add_colour('#7fe310')
Self-explanatory.
Exported with the :colours tag.
=cut
sub add_colour
{
my $name = shift;
my $val = shift;
if (!defined $val)
{
my @rgb = hex2rgb($name) or return;
$val = [@rgb];
}
if (ref $val && ref $val eq 'ARRAY')
{
$RGB{$name} = [@{$val}];
return $name;
}
return;
}
=head2 rgb2hex($red, $green, $blue)
=head2 hex2rgb('#7fe310')
These functions translate a list of RGB values into a hexadecimal
string, as is commonly used in HTML and the Image::Magick API, and vice
versa.
Exported with the :convert tag.
=cut
# Color translation
sub rgb2hex
{
return unless @_ == 3;
my $color = '#';
foreach my $cc (@_)
{
$color .= sprintf("%02x", $cc);
}
return $color;
}
sub hex2rgb
{
my $clr = shift;
my @rgb = $clr =~ /^#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})$/i;
return unless @rgb;
return map { hex $_ } @rgb;
}
=head2 read_rgb( F<file name> )
Reads in colours from a rgb file as used by the X11 system.
Doing something like:
use GD::Graph::bars;
use GD::Graph::colour;
GD::Graph::colour::read_rgb("rgb.txt") or die "cannot read colours";
Will allow you to use any colours defined in rgb.txt in your graph.
Exported with the :files tag.
=cut
#
# Read a rgb.txt file (X11)
#
# Expected format of the file:
#
# R G B colour name
#
# Fields can be separated by any number of whitespace
# Lines starting with an exclamation mark (!) are comment and
# will be ignored.
#
# returns number of colours read
sub read_rgb($) # (filename)
{
my $fn = shift;
my $n = 0;
my $line;
open(RGB, $fn) or return 0;
while (defined($line = <RGB>))
{
next if ($line =~ /\s*!/);
chomp($line);
# remove leading white space
$line =~ s/^\s+//;
# get the colours
my ($r, $g, $b, $name) = split(/\s+/, $line, 4);
# Ignore bad lines
next unless (defined $name);
$RGB{$name} = [$r, $g, $b];
$n++;
}
close(RGB);
return $n;
}
sub version { $GD::Graph::colour::VERSION }
sub dump_colours
{
my $max = $_[0] ? $_[0] : keys %RGB;
my $n = 0;
my $clr;
foreach $clr (sorted_colour_list($max))
{
last if $n > $max;
print "colour: $clr, " .
"${$RGB{$clr}}[0], ${$RGB{$clr}}[1], ${$RGB{$clr}}[2]\n"
}
}
"Just another true value";
__END__
=head1 PREDEFINED COLOUR NAMES
white,
lgray,
gray,
dgray,
black,
lblue,
blue,
dblue,
gold,
lyellow,
yellow,
dyellow,
lgreen,
green,
dgreen,
lred,
red,
dred,
lpurple,
purple,
dpurple,
lorange,
orange,
pink,
dpink,
marine,
cyan,
lbrown,
dbrown.
=head1 AUTHOR
Martien Verbruggen E<lt>mgjv@tradingpost.com.auE<gt>
=head2 Copyright
GIFgraph: Copyright (c) 1995-1999 Martien Verbruggen.
Chart::PNGgraph: Copyright (c) 1999 Steve Bonds.
GD::Graph: Copyright (c) 1999 Martien Verbruggen.
All rights reserved. This package is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
=head1 SEE ALSO
L<GD::Graph>,
L<GD::Graph::FAQ>
|