/usr/share/perl5/Image/Xpm.pm is in libimage-base-bundle-perl 1.0.7-3.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 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 | package Image::Xpm; # Documented at the __END__
# $Id: Xpm.pm,v 1.17 2000/11/09 19:05:31 mark Exp mark $
use strict;
use vars qw($VERSION @ISA);
$VERSION = '1.09';
use Image::Base;
@ISA = qw(Image::Base);
use Carp qw(carp croak);
use Symbol ();
### Data structures
#
# We will call the characters that are used to signify a particular colour the
# cc's.
#
# -palette is a hash keyed by the cc's whose values are hashes of palette
# colours, e.g. key x colour pairs.
#
# -cindex hash is a hash keyed by colour name ('#ffffff', 'blue' etc) whose
# values are the cc's in the palette that represent that colour. Note that the
# colour names are all lowercased even if they are mixed case in the palette
# itself.
#
# -pixels is a string of cc's which is effectively a vector of 8, 16, 24, 32
# bits, etc.
#
# -extlines are lines of text used for any extensions; if we read any in we
# hold them with the image and write them out if the image is saved, but we do
# not process them.
# Private class data
# If you inherit don't clobber these fields!
my @FIELD = qw(-file -width -height -ncolours -cpp -hotx -hoty -cc
-palette -cindex -pixels
-extname -extlines -comments -commentpixel -commentcolour);
# States for parsing an xpm file
my $STATE_START = 0;
my $STATE_IN_COMMENT = 1;
my $STATE_ARRAY = 2;
my $STATE_VALUES = 3;
my $STATE_COLOURS = 4;
my $STATE_PIXELS = 5;
my $STATE_EXTENSIONS = 6;
my $STATE_FINISH = 7;
my $MAX_CH = 255;
my $CH_BS = 127;
my $CH_BSLASH = 92;
my $CH_QUOTE = 39;
my $CH_DQUOTE = 34;
my $CH_SPACE = 32;
my $UNSET = -1;
### Private methods
#
# _get object inherited
# _set object inherited
# _nextcc object
# _add_colour object
# _add_color object
sub _nextcc { # Object method
my $self = shift;
# my $class = ref($self) || $self;
while (exists $self->{-palette}{$self->{-cc}}) {
my @ch = unpack "C$self->{-cpp}", $self->{-cc};
my $found = 0;
foreach my $i (reverse 0..$self->{-cpp} - 1) {
if ($ch[$i] < $MAX_CH) {
$ch[$i]++;
$ch[$i]++ # Skip BS, \, ' and " -- using magic nums for speed
while $ch[$i] == $CH_BS or $ch[$i] == $CH_BSLASH or
$ch[$i] == $CH_QUOTE or $ch[$i] == $CH_DQUOTE;
$found++;
last; # Finish as soon as we've incremented something
}
else {
$ch[$i] = $CH_SPACE; # Skip control chars
}
}
croak "_nextcc() ran out of palette characters" unless $found;
$self->{-cc} = pack "C$self->{-cpp}", @ch;
}
croak "_nextcc() cpp is too small"
if length($self->{-cc}) > $self->{-cpp};
$self->{-cc};
}
*_add_color = \&_add_colour;
sub _add_colour { # Object method
my $self = shift;
# my $class = ref($self) || $self;
my $colour = shift;
my $lccolour = lc $colour;
return $self->{-cindex}{$lccolour} if exists $self->{-cindex}{$lccolour};
$self->{-cc} = $self->_nextcc if exists $self->{-palette}{$self->{-cc}};
$self->{-palette}{$self->{-cc}} = { c => $colour };
$self->{-cindex}{$lccolour} = $self->{-cc};
$self->{-ncolours}++;
$self->{-cc};
}
sub DESTROY {
; # Save's time
}
### Public methods
sub new { # Class and object method
my $self = shift;
my $class = ref($self) || $self;
my $obj = ref $self ? $self : undef;
my %arg = @_;
# Defaults
$self = {
'-hotx' => $UNSET,
'-hoty' => $UNSET,
'-cpp' => 1,
'-palette' => {},
'-cindex' => {},
'-pixels' => '',
'-comments' => [],
'-commentpixel' => '', # Typically /* pixels */
'-commentcolour' => '', # Typically /* colors */
'-extlines' => [],
};
bless $self, $class;
# If $obj->new copy original object's data
if (defined $obj) {
foreach my $field (@FIELD) {
$self->_set($field, $obj->_get($field));
}
}
# Any options specified override
foreach my $field (@FIELD) {
$self->_set($field, $arg{$field}) if defined $arg{$field};
}
$self->{-cc} = ' ' x $self->{-cpp};
my $file = $self->get('-file');
if (defined $file and not $self->{-pixels}) {
$self->load if ref $file or -r $file;
}
croak "new() `$file' not found or unreadable"
if defined $file and not defined $self->get('-width');
foreach my $field (qw(-width -height -cpp)) {
croak "new() $field must be set" unless defined $self->get($field);
}
if (not $self->{-pixels}) {
$self->{-pixels} = ' ' x
($self->{-width} * $self->{-height} * $self->{-cpp});
$self->_add_colour('white');
}
$self;
}
# get() is inherited
sub set { # Object method
my $self = shift;
# my $class = ref($self) || $self;
while (@_) {
my $field = shift;
my $val = shift;
carp "set() -field has no value" unless defined $val;
carp "set() $field is read-only"
if $field =~
/^-(?:cpp|comments|cindex|ncolours|palette|pixels|
width|height|ext(?:name|lines))/ox;
carp "set() -hotx `$val' is out of range"
if $field eq '-hotx' and ($val < $UNSET or $val >= $self->get('-width'));
carp "set() -hoty `$val' is out of range"
if $field eq '-hoty' and ($val < $UNSET or $val >= $self->get('-height'));
$self->_set($field, $val);
}
}
sub xy { # Object method
my $self = shift;
my ($x, $y, $colour) = @_;
# xy() is common so we can't afford the expense of method calls
if (defined $colour) {
substr($self->{-pixels},
($y * $self->{-width} * $self->{-cpp}) + ($x * $self->{-cpp}),
$self->{-cpp}) =
$self->{-cindex}{lc $colour} || $self->_add_colour($colour);
}
else {
my $cc = substr($self->{-pixels},
($y * $self->{-width} * $self->{-cpp}) + ($x * $self->{-cpp}),
$self->{-cpp});
return $self->{-palette}{$cc}{c} ||
$self->{-palette}{$cc}{m} ||
$self->{-palette}{$cc}{s} ||
$self->{-palette}{$cc}{g} ||
$self->{-palette}{$cc}{g4};
}
}
sub vec { # Object method
my $self = shift;
my ($offset, $colour) = @_;
if (defined $colour) {
substr($self->{-pixels}, $offset, $self->{-cpp}) =
$self->{-cindex}{lc $colour} || $self->_add_colour($colour);
}
else {
my $cc = substr($self->{-pixels}, $offset, $self->{-cpp});
return $self->{-palette}{$cc}{c} ||
$self->{-palette}{$cc}{m} ||
$self->{-palette}{$cc}{s} ||
$self->{-palette}{$cc}{g} ||
$self->{-palette}{$cc}{g4};
}
}
*rgb2color = \&rgb2colour;
sub rgb2colour { # Class or object method
my $self = shift;
# my $class = ref($self) || $self;
sprintf "#%02x%02x%02x", @_;
}
*add_colors = \&add_colours;
sub add_colours { # Object method
my $self = shift;
# my $class = ref($self) || $self;
$self->_add_colour(shift @_) while @_;
}
*del_color = \&del_colour;
sub del_colour { # Object method
my $self = shift;
# my $class = ref($self) || $self;
my $colour = lc shift;
my $cc = $self->{-cindex}{$colour};
return undef unless defined $cc; # Colour isn't there to delete
my $cpp = $self->get(-cpp);
for (my $i = 0; $i < length($self->{-pixels}) / $cpp; $i += $cpp) {
return 0 if substr($self->{-pixels}, $i, $cpp) eq $cc;
}
delete $self->{-palette}{$cc};
delete $self->{-colours}{$colour};
$self->{-ncolours}--;
1;
}
sub load { # Object method
my $self = shift;
# my $class = ref($self) || $self;
my $file = shift() || $self->get('-file');
croak "load() no file specified" unless $file;
$self->set('-file', $file);
my ($width, $height, $ncolours, $cpp, $hotx, $hoty, $extname);
my $next_state = $STATE_START;
my $state = $STATE_START;
my $err = "load() file `$file' ";
my %palette;
my $i;
local $_;
my $fh = Symbol::gensym;
if( not ref $file ) {
open $fh, $file or croak "load() failed to open `$file': $!" ;
}
elsif( ref($file) eq 'SCALAR' ) {
require IO::String;
$fh = IO::String->new( $$file );
}
else {
seek($file, 0, 0) or croak "load() can't rewind handle for `$file': $!";
$fh = $file;
}
$self->{-palette} = {};
$self->{-cindex} = {};
$self->{-comments} = [];
$self->{-extlines} = [];
$self->{-pixels} = '';
$self->{-commentpixel} = '';
$self->{-commentcolour} = '';
LINE:
while (<$fh>) {
# Blank lines
next LINE if /^\s*$/o;
# Starting comment
if ($state == $STATE_START) {
croak "$err does not begin with /* XPM */"
unless m,/\*\s*XPM\s*\*/,o;
$state = $STATE_ARRAY;
next LINE;
}
# Comment only lines
if (m,^(\s*/\*.*\*/\s*)$,o) {
my $comment = $1;
if ($comment =~ m,^\s*/\*\s*colou?rs?\s*\*/\s*$,o) {
$self->set(-commentcolour, $comment);
}
elsif ($comment =~ m,^\s*/\*\s*pixels?\s*\*/\s*$,o) {
$self->set(-commentpixel, $comment);
}
else {
push @{$self->{-comments}}, $comment;
}
next LINE;
}
# Start of multi-line comment
if ($state != $STATE_IN_COMMENT and m,^\s*/\*,o) {
push @{$self->{-comments}}, $_;
$next_state = $state; # Remember the state we're due for
$state = $STATE_IN_COMMENT;
next LINE;
}
# End of multi-line comment
if ($state == $STATE_IN_COMMENT) {
push @{$self->{-comments}}, $_;
$state = $next_state if m,\*/,o;
next LINE;
}
# Name of C string
if ($state == $STATE_ARRAY) {
croak "$err does not have a proper C array name"
unless /static\s+char\s+\*\s*\w+\[\s*\]\s*=\s*\{/o; #}
$state = $STATE_VALUES;
next LINE;
}
# Values line
if ($state == $STATE_VALUES) {
($width, $height, $ncolours, $cpp, $hotx, $hoty, $extname) =
/"\s*(\d+)\s+(\d+)\s+(\d+)\s+(\d+)
(?:\s+(\d+)\s+(\d+))?(?:\s+(\w+))?\s*"/ox;
croak "$err missing width" unless defined $width;
croak "$err missing height" unless defined $height;
croak "$err missing ncolours" unless defined $ncolours;
croak "$err missing cpp" unless defined $cpp;
croak "$err zero width is invalid" if $width == 0;
croak "$err zero height is invalid" if $height == 0;
croak "$err zero ncolours is invalid" if $ncolours == 0;
croak "$err zero cpp is invalid" if $cpp == 0;
if ((defined $hotx and not defined $hoty) or
(defined $hotx and $hotx >= $width) or
(defined $hoty and $hoty >= $height)) {
carp "$err deleted invalid hotspot";
$hotx = $hoty = $UNSET;
}
$hotx = $hoty = $UNSET unless defined $hotx ;
carp "$err unusually large cpp `$cpp'" if $cpp > 4;
$self->{-cpp} = $cpp; # Have to do this early as possible.
$i = 0;
$state = $STATE_COLOURS;
next LINE;
}
# Colour palette
if ($state == $STATE_COLOURS) {
/"(.{$cpp})/; #" No /o since this can vary between images!
my $cc = $1;
my %pair = /\s+(m|s|g4|g|c)\s+(#[A-Fa-f\d]{3,}|\w+)/go;
$self->{-cindex}{lc $pair{'c'}} = $cc if exists $pair{'c'};
$self->{-palette}{$cc} = { %pair };
$i++;
croak "$err palette larger than ncolors" if $i > $ncolours;
if ($i == $ncolours) {
$i = 0;
$state = $STATE_PIXELS;
}
next LINE;
}
# Pixels
if ($state == $STATE_PIXELS) {
/^\s*"(.*)"/o;
$self->{-pixels} .= $1;
$i++;
croak "$err more pixels than height indicates" if $i > $height;
$state = defined $extname ? $STATE_EXTENSIONS : $STATE_FINISH
if $i == $height;
next LINE;
}
# Extensions
if ($state == $STATE_EXTENSIONS) {
if (/XPMENDEXT/o) {
$state = $STATE_FINISH;
}
else {
push @{$self->{-extlines}}, $_;
}
next LINE;
}
# Finish
if ($state == $STATE_FINISH) {
croak "$err invalid ending" unless /\}\s*;/;
last LINE;
}
}
close $fh or croak "load() failed to close `$file': $!";
push @{$self->{-extlines}}, "XPMENDEXT\n" if scalar @{$self->{-extlines}};
$self->_set(-cpp => $cpp);
$self->_set(-width => $width);
$self->_set(-height => $height);
$self->_set(-ncolours => $ncolours);
$self->_set(-extname => $extname);
$self->set(-hotx => $hotx, -hoty => $hoty);
}
sub save { # Object method
my $self = shift;
# my $class = ref($self) || $self;
my $file = shift() || $self->get('-file');
croak "save() no file specified" unless $file;
$self->set('-file', $file);
my ($width, $height, $cpp) = $self->get('-width', '-height', '-cpp');
my $line;
my $fh = Symbol::gensym;
open $fh, ">$file" or croak "save() failed to open `$file': $!";
$file =~ s,^.*/,,o;
$file =~ s/\.xpm$//o;
$file =~ tr/[-_A-Za-z0-9]/_/c;
print $fh "/* XPM */\nstatic char *", $file, "[] = {\n";
print $fh @{$self->get(-comments)};
$line = qq{"$width $height } . $self->get(-ncolours) . " $cpp "; #"
$line .= $self->get(-hotx) . " " . $self->get(-hoty) . " "
if $self->get(-hotx) > $UNSET;
$line .= $self->get(-extname) if defined $self->get(-extname);
$line =~ s/\s+$//o;
print $fh qq{$line",\n}, $self->get(-commentcolour); #"
while (my ($cc, $pairs) = each (%{$self->{-palette}})) {
$line = qq{"$cc }; #"
foreach my $key (sort keys %{$pairs}) {
$line .= "$key $pairs->{$key} ";
}
$line =~ s/\s+$//o;
print $fh qq{$line",\n}; #"
}
print $fh $self->get(-commentpixel);
my $comma = ',';
for (my $y = 0; $y < $height; $y++) {
$comma = '' if $y == $height - 1;
print $fh
'"',
substr($self->{-pixels}, $y * $width * $cpp, $width * $cpp),
qq{"$comma\n}; #"
}
print $fh @{$self->get(-extlines)}, "};\n";
close $fh or croak "save() failed to close `$file': $!";
}
1;
__END__
=head1 NAME
Image::Xpm - Load, create, manipulate and save xpm image files.
=head1 SYNOPSIS
use Image::Xpm;
my $j = Image::Xpm->new(-file, 'Camel.xpm');
my $i = Image::Xpm->new(-width => 10, -height => 16);
my $h = $i->new; # Copy of $i
$i->xy(5, 8, 'red'); # Set a colour (& add to palette if necessary)
print $i->xy(9, 3); # Get a colour
$i->xy(120, 130, '#1256DD');
$i->xy(120, 130, $i->rgb2colour(66, 0x4D, 31));
$i->vec(24, '#808080'); # Set a colour using a vector offset
print $i->vec(24); # Get a colour using a vector offset
print $i->get(-width); # Get and set object attributes
$i->set(-height, 15);
$i->load('test.xpm');
$i->save;
# Changing just the palette
$i->add_colours(qw(red green blue #123456 #C0C0C0));
$i->del_colour('blue');
=head1 DESCRIPTION
This class module provides basic load, manipulate and save functionality for
the xpm file format. It inherits from C<Image::Base> which provides additional
manipulation functionality, e.g. C<new_from_image()>. See the C<Image::Base>
pod for information on adding your own functionality to all the Image::Base
derived classes.
=head2 new()
my $i = Image::Xpm->new(-file => 'test.xpm');
my $j = Image::Xpm->new(-width => 12, -height => 18);
my $k = $i->new;
We can create a new xpm image by reading in a file, or by creating an image
from scratch (all the pixels are white by default), or by copying an image
object that we created earlier.
If we set C<-file> then all the other arguments are ignored (since they're
taken from the file). If we don't specify a file, C<-width> and C<-height> are
mandatory and C<-cpp> will default to 1 unless specified otherwise.
=over
=item C<-file>
The name of the file to read when creating the image. May contain a full path.
This is also the default name used for C<load>ing and C<save>ing, though it
can be overridden when you load or save.
=item C<-width>
The width of the image; taken from the file or set when the object is created;
read-only.
=item C<-height>
The height of the image; taken from the file or set when the object is created;
read-only.
=item C<-cpp>
Characters per pixel. Commonly 1 or 2, default is 1 for images created by the
module; read-only.
See the example for how to change an image's cpp.
=item C<-hotx>
The x-coord of the image's hotspot; taken from the file or set when the object
is created. Set to -1 if there is no hotspot.
=item C<-hoty>
The y-coord of the image's hotspot; taken from the file or set when the object
is created. Set to -1 if there is no hotspot.
=item C<-ncolours>
The number of unique colours in the palette. The image may not be using all
of them; read-only.
=item C<-cindex>
An hash whose keys are colour names, e.g. '#123456' or 'blue' and whose values
are the palette names, e.g. ' ', '#', etc; read-only. If you want to add more
colours to the image itself simply write pixels with the new colours using
C<xy>; if you want to add more colours to the palette without necessarily
using them in the image use C<add_colours>.
=item C<-palette>
A hash whose keys are the palette names, e.g. ' ', '#', etc. and whose values
are hashes of colour type x colour name pairs, e.g. C<c =E<gt> red>, etc;
read-only. If you want to add more colours to the image itself simply write
pixels with the new colours using C<xy>; if you want to add more colours to
the palette without necessarily using them in the image use C<add_colours>.
=item C<-pixels>
A string of palette names which constitutes the data for the image itself;
read-only.
=item C<-extname>
The name of the extension text if any; commonly XPMEXT; read-only.
=item C<-extlines>
The lines of text of any extensions; read-only.
=item C<-comments>
An array (possibly empty) of comment lines that were in a file that was read
in; they will be written out although we make no guarantee regarding their
placement; read-only.
=back
=head2 get()
my $width = $i->get(-width);
my ($hotx, $hoty) = $i->get(-hotx, -hoty);
Get any of the object's attributes. Multiple attributes may be requested in a
single call.
See C<xy> and C<vec> to get/set colours of the image itself.
=head2 set()
$i->set(-hotx => 120, -hoty => 32);
Set any of the object's attributes. Multiple attributes may be set in a single
call; some attributes are read-only.
See C<xy> and C<vec> to get/set colours of the image itself.
=head2 xy()
$i->xy(4, 11, '#123454'); # Set the colour at point 4,11
my $v = $i->xy(9, 17); # Get the colour at point 9,17
Get/set colours using x, y coordinates; coordinates start at 0. If the colour
does not exist in the palette it will be added automatically.
When called to set the colour the value returned is characters used for that
colour in the palette; when called to get the colour the value returned is the
colour name, e.g. 'blue' or '#f0f0f0', etc, e.g.
$colour = xy($x, $y); # e.g. #123456
$cc = xy($x, $y, $colour); # e.g. !
We don't normally pick up the return value when setting the colour.
=head2 vec()
$i->vec(43, 0); # Unset the bit at offset 43
my $v = $i->vec(87); # Get the bit at offset 87
Get/set bits using vector offsets; offsets start at 0. The offset of a pixel
is ((y * width * cpp) + (x * cpp)).
The sort of return value depends on whether we are reading (getting) or
writing (setting) the colour - see C<xy> for an explanation.
=head2 rgb2colour() and rgb2color()
$i->rgb2colour(0xff, 0x40, 0x80); # Returns #ff4080
Image::Xpm->rgb2colour(10, 20, 30); # Returns #0a141e
Convenience class or object methods which accept three integers and return a
colour name string.
=head2 load()
$i->load;
$i->load('test.xpm');
Load the image whose name is given, or if none is given load the image whose
name is in the C<-file> attribute.
=head2 save()
$i->save;
$i->save('test.xpm');
Save the image using the name given, or if none is given save the image using
the name in the C<-file> attribute. The image is saved in xpm format.
=head2 add_colours() and add_colors()
$i->add_colours(qw(#C0C0DD red blue #123456));
These are for adding colours to the palette; you don't need to use them to set
a pixel's colour - use C<xy> for that.
Add one or more colour names either as hex strings or as literal colour names.
These are always added as type 'c' colours; duplicates are ignored.
NB If you just want to set some pixels in colours that may not be in the
palette, simply do so using C<xy> since new colours are added automatically.
=head2 del_colour() and del_color()
$i->del_colour('green');
Delete a colour from the palette; returns undef if the colour isn't in the
palette, false (0) if the colour is in the palette but also in the image, or
true (1) if the colour has been deleted (i.e. it was in the palette but not in
use in the image).
=head1 EXAMPLE
=head2 Changing the -cpp of an image:
my $i = Image::Xpm(-file => 'test1.xpm'); # test1.xpm has cpp == 1
my $j = $i->new_from_image('Image::xpm', -cpp => 2);
$j->save('test2.xpm');
# Could have written 2nd line above as:
my $j = $i->new_from_image(ref $i, -cpp => 2);
=head1 CHANGES
2000/11/09
Added Jerrad Pierce's patch to allow load() to accept filehandles or strings;
will document in next release.
2000/10/19
Fixed bugs in xy() and vec() reported by Pat Gunn.
2000/05/25
Fixed a bug in the test file; fixed a bug in save() which affected xpm
extensions.
2000/05/04
Fixed bugs in xy(), vec(), save() and load().
Improved the test program.
2000/05/03
Created.
=head1 AUTHOR
Mark Summerfield. I can be contacted as <summer@perlpress.com> -
please include the word 'xpm' in the subject line.
=head1 COPYRIGHT
Copyright (c) Mark Summerfield 2000. All Rights Reserved.
This module may be used/distributed/modified under the GPL.
=cut
|