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
|
=head1 NAME
PDL::IO::Pic -- image I/O for PDL
=head1 DESCRIPTION
=head2 Image I/O for PDL based on the netpbm package.
This package implements I/O for a number of popular image formats
by exploiting the xxxtopnm and pnmtoxxx converters from the netpbm package
(which is based on the original pbmplus by Jef Poskanzer).
Netpbm is available at
ftp://wuarchive.wustl.edu/graphics/graphics/packages/NetPBM/
Pbmplus (on which netpbm is based) might work as well, I haven't tried it.
If you want to read/write JPEG images you additionally need the two
converters cjpeg/djpeg which come with the libjpeg distribution (the
"official" archive site for this software is ftp://ftp.uu.net/graphics/jpeg).
Image I/O for all formats is established by reading and writing only
the PNM format directly while the netpbm standalone apps take care of
the necessary conversions. In accordance with netpbm parlance PNM stands
here for 'portable any map' meaning any of the PBM/PGM/PPM formats.
As it appeared to be a reasonable place this package also contains the
routine wmpeg to write mpeg movies from PDLs representing image
stacks (the image stack is first written as a sequence of PPM images into some
temporary directory). For this to work you additionally need the program
mpeg_encode from the Berkeley multimedia package.
You find mpeg_encode at ftp://mm-ftp.cs.berkeley.edu/pub/multimedia/mpeg/encode (they even have binaries for a number of platforms).
=cut
package PDL::IO::Pic;
@EXPORT_OK = qw( wmpeg rpic wpic rpiccan wpiccan );
%EXPORT_TAGS = (Func => [@EXPORT_OK]);
use PDL::Core;
use PDL::Exporter;
use PDL::Types;
use PDL::ImageRGB;
use PDL::IO::Pnm;
use PDL::Options;
use File::Basename;
use SelfLoader;
use strict;
use vars qw( $Dflags @ISA %converter );
@ISA = qw( PDL::Exporter );
=head2 Configuration
The executables from the netpbm package are assumed to be in your path.
Problems in finding the executables may show up as PNM format
errors when calling wpic/rpic. If you run into this kind of problem run
your program with perl C<-w> so that perl prints a message if it can't find
the filter when trying to open the pipe.
=cut
# list of converters by type
# might get more fields in the future to provide a generic representation
# of common flags like COMPRESSION, LUT, etc which would hold the correct
# flags for the particular converter or NA if not supported
# conventions:
# NONE we need no converter (directly supported format)
# NA feature not available
# 'whatevertopnm' name of the executable
# The 'FLAGS' key must be used if the converter needs other flags than
# the default flags ($Dflags)
$PDL::IO::Pic::debug = 0;
&init_converter_table();
# setup functions
sub init_converter_table {
# default flag to be used with any converter unless overridden with FLAGS
$Dflags = '-quiet';
%converter = ();
for ('TIFF','SGI','RAST','PCX')
{ my $conv = lc; $converter{$_} = {put => "pnmto$conv",
get => "$conv".'topnm'} }
for (['PNM','NONE','NONE'],
['JPEG','cjpeg','djpeg'],
['PS','pnmtops',
'gs -sDEVICE=ppmraw -sOutputFile=- -q -dNOPAUSE -dBATCH'],
['GIF','ppmtogif','giftopnm'],
['IFF','ppmtoilbm','ilbmtoppm']) {
$converter{$_->[0]} = {put => $_->[1],
get => $_->[2]}
}
# these converters do not understand pbmplus flags:
$converter{'JPEG'}->{FLAGS} = '';
$converter{'GIF'}->{Prefilt} = 'ppmquant 256 |';
my $key;
for $key (keys %converter) {
$converter{$key}->{Rok} = inpath($converter{$key}->{get});
$converter{$key}->{Wok} = inpath($converter{$key}->{put});
if (defined $converter{$key}->{Prefilt}) {
my $filt = $1 if $converter{$key}->{Prefilt} =~ /^\s*(\S+)\s+/;
$converter{$key}->{Wok} = inpath($filt) if $converter{$key}->{Wok};
}
}
$PDL::IO::Pic::biggrays = &hasbiggrays();
print "using big grays\n" if $PDL::IO::Pic::debug &&
$PDL::IO::Pic::biggrays;
for (keys %converter) {
$converter{$_}->{ushortok} = $PDL::IO::Pic::biggrays ?
(m/GIF/ ? 0 : 1) : (m/GIF|RAST|IFF/ ? 0 : 1);
}
}
sub inpath {
my ($prog) = @_;
my $pathsep = $^O =~ /win32/i ? ';' : ':';
my $exe = $^O =~ /win32/i ? '.exe' : '';
for(split $pathsep,$ENV{PATH}){return 1 if -x "$_/$prog$exe" || $prog =~ /^NONE$/}
return 0;
}
sub hasbiggrays {
my ($checked,$form) = (0,'');
require IO::File;
for (&rpiccan()) { next if /^PNM$/; $form = $_; $checked=1; last }
unless ($checked) {warn "PDL::IO::Pic - couldn't find any pbm converter"; return 1};
*SAVEERR = *SAVEERR; # stupid fix to shut up -w (AKA pain-in-the-...-flag)
open(SAVEERR, ">&STDERR");
my $tmp = new_tmpfile IO::File or barf "couldn't open tmpfile";
my $pos = $tmp->getpos;
my $txt;
{ local *IN;
*IN = *$tmp; # doesn't seem to work otherwise
open(STDERR,">&IN") or barf "couldn't redirect stdder";
system("$converter{$form}->{get} -version");
open(STDERR, ">&PDL::IO::Pic::SAVEERR");
$tmp->setpos($pos); # rewind
$txt = join '',<IN>;
close IN; undef $tmp;
}
return ($txt =~ /PGM_BIGGRAYS/);
}
=head1 FUNCTIONS
=head2 rpiccan, wpiccan
=for ref
Test which image formats can be read/written
=for example
$im = PDL->rpic('PDL.jpg') if PDL->rpiccan('JPEG');
@wformats = PDL->wpiccan();
finds out if PDL::IO::Pic can read/write certain image formats.
When called without arguments returns a list of supported
formats. When called with an argument returns true if format
is supported on your computer (requires appropriate filters in
your path), false otherwise.
=cut
sub rpiccan {return PDL->rpiccan(@_)}
sub wpiccan {return PDL->wpiccan(@_)}
sub PDL::rpiccan {splice @_,1,0,'R';
return PDL::IO::Pic::piccan(@_)}
sub PDL::wpiccan {splice @_,1,0,'W';
return PDL::IO::Pic::piccan(@_)}
=head2 rpic
=for ref
Read images in many formats with automatic format detection.
=for example
$im = rpic $file;
$im = PDL->rpic 'PDL.jpg' if PDL->rpiccan('JPEG');
I<Options>
=for opt
FORMAT => 'JPEG' # explicitly read this format
XTRAFLAGS => '-nolut' # additional flags for converter
Reads image files in most of the formats supported by netpbm. You can
explicitly specify a supported format by additionally passing a hash
containing the FORMAT key as in
$im = rpic ($file, {FORMAT => 'GIF'});
This is especially useful if the particular format isn't identified by
a magic number and doesn't have the 'typical' extension or you want to
avoid the check of the magic number if your data comes in from a pipe.
The function returns a pdl of the appropriate type upon completion.
Option parsing uses the L<PDL::Options> module and therefore supports
minimal options matching.
You can also read directly into an existing pdl that has to have the
right size(!). This can come in handy when you want to read a sequence
of images into a datacube, e.g.
$stack = zeroes(byte,3,500,300,4);
rpic $stack->slice(':,:,:,(0)'),"PDL.jpg";
reads an rgb image (that had better be of size (500,300)) into the
first plane of a 3D RGB datacube (=4D pdl datacube). You can also do
transpose/inversion upon read that way.
=cut
my $rpicopts = {
FORMAT => undef,
XTRAFLAGS => undef,
};
sub rpic {PDL->rpic(@_)}
sub PDL::rpic {
barf 'Usage: $im = rpic($file[,hints]) or $im = PDL->rpic($file[,hints])'
if $#_<0;
my ($class,$file,$hints,$maybe) = @_;
my ($type, $pdl);
if (ref($file)) { # $file is really a pdl in this case
$pdl = $file;
$file = $hints;
$hints = $maybe;
} else {
$pdl = $class->initialize;
}
$hints = { parse $rpicopts, $hints } if ref $hints;
if (defined($$hints{'FORMAT'})) {
$type = $$hints{'FORMAT'};
barf "unsupported (input) image format"
unless (exists($converter{$type}) &&
$converter{$type}->{get} !~ /NA/);
}
else {
$type = chkform($file);
barf "can't figure out file type, specify explicitly"
if $type =~ /UNKNOWN/; }
my $flags = $converter{$type}->{FLAGS};
$flags = "$Dflags" unless defined($flags);
$flags .= " $$hints{XTRAFLAGS}" if defined($$hints{XTRAFLAGS});
my $cmd = "$converter{$type}->{get} $flags $file |";
$cmd = $file if $converter{$type}->{get} =~ /^NONE/;
print("conversion by '$cmd'\n") if $PDL::IO::Pic::debug > 10;
return rpnm($pdl,$cmd);
}
=head2 wpic
=for ref
Write images in many formats with automatic format selection.
=for usage
Usage: wpic($pdl,$filename[,{ options... }])
=for example
wpic $pdl, $file;
$im->wpic('web.gif',{LUT => $lut});
for (@images) {
$_->wpic($name[0],{CONVERTER => 'ppmtogif'})
}
Write out an image file. Function will try to guess correct image
format from the filename extension, e.g.
$pdl->wpic("image.gif")
will write a gif file. The data written out will be scaled to byte if
input is of type float/double. Input data that is of a signed integer
type and contains negative numbers will be rejected (assuming the user
should have the desired conversion to an unsigned type already). A number
of options can be specified (as a hash reference) to get more direct control of
the image format that is being written. Valid options are (key
=> example_value):
=for options
CONVERTER => 'ppmtogif', # explicitly specify pbm converter
FLAGS => '-interlaced -transparent 0', # flags for converter
IFORM => 'PGM', # explicitly specify intermediate format
XTRAFLAGS => '-imagename iris', # additional flags to defaultflags
FORMAT => 'PCX', # explicitly specify output image format
COLOR => 'bw', # specify color conversion
LUT => $lut, # use color table information
Option parsing uses the L<PDL::Options> module and therefore supports
minimal options matching. A detailed explanation of supported options follows.
=over 7
=item CONVERTER
directly specify the converter,
you had better know what you are doing, e.g.
CONVERTER => 'ppmtogif',
=item FLAGS
flags to use with the converter;
ignored if !defined($$hints{CONVERTER}), e.g. with the gif format
FLAGS => '-interlaced -transparent 0',
=item IFORM
intermediate PNM/PPM/PGM/PBM format to use;
you can append the strings 'RAW' or 'ASCII'
to enforce those modes, eg IFORMAT=>'PGMRAW' or
IFORM => 'PGM',
=item XTRAFLAGS
additional flags to use with an automatically chosen
converter, this example works when you write SGI
files (but will give an error otherwise)
XTRAFLAGS => '-imagename iris',
=item FORMAT
explicitly select the format you want to use. Required if wpic cannot
figure out the desired format from the file name extension. Supported
types are currently TIFF,GIF,SGI,PNM,JPEG,PS,RAST(Sun Raster),IFF,PCX,
e.g.
FORMAT => 'PCX',
=item COLOR
you want black and white (value B<bw>), other possible value is
B<bwdither> which will write a dithered black&white
image from the input data, data conversion will be done appropriately,
e.g.
COLOR => 'bw',
=item LUT
This is a palette image and the value of this key should be a
pdl containg an RGB lookup table (3,x), e.g.
LUT => $lut,
=back
Using the CONVERTER hint you can also build a pipe and perform
several netpbm operations to get the special result you like. Using it
this way the first converter/filecommand in the pipe should be
specified with the CONVERTER hint and subsequent converters + flags in
the FLAGS hint. This is because wpic tries to figure out the required
format to be written by wpnm based on the first converter. Be careful when
using the PBMBIN var as it will only be prepended to the converter. If more
converters are in the FLAGS part specify the full path unless they are in
your PATH anyway.
Example:
$im->wpic('test.ps',{CONVERTER => 'pgmtopbm',
FLAGS => "-dither8 | pnmtops" })
Some of the options may appear silly at the moment and probably
are. The situation will hopefully improve as people use the code and
the need for different/modified options becomes clear. The general
idea is to make the function perl compliant: easy things should be
easy, complicated tasks possible.
=cut
my %wpicopts = map {($_ => undef)}
qw/IFORM CONVERTER FLAGS FORMAT
XTRAFLAGS COLOR LUT/;
my $wpicopts = \%wpicopts;
*wpic = \&PDL::wpic;
sub PDL::wpic {
barf 'Usage: wpic($pdl,$filename[,$hints]) ' .
'or $pdl->wpic($filename,[,$hints])' if $#_<1;
my ($pdl,$file,$hints) = @_;
my ($type, $cmd, $form,$iform,$iraw);
$hints = {parse($wpicopts, $hints)} if ref $hints;
# figure out the right converter
my ($conv, $flags, $format) = getconv($pdl,$file,$hints);
print "Using the command $conv with the flags $flags\n"
if $PDL::IO::Pic::debug>10;
if (defined($$hints{IFORM})) {
$iform = $$hints{IFORM}; }
else { # check if converter requires a particular intermediate format
$iform = 'PPM' if $conv =~ /^\s*(ppm)|(cjpeg)/;
$iform = 'PGM' if $conv =~ /^\s*pgm/;
$iform = 'PBM' if $conv =~ /^\s*pbm/;
$iform = 'PNM' if $conv =~ /^\s*(pnm)|(NONE)/; }
# get final values for $iform and $pdl (check conversions, consistency,etc)
($pdl,$iform) = chkpdl($pdl,$iform,$hints,$format);
print "using intermediate format $iform\n" if $PDL::IO::Pic::debug>10;
$cmd = "|" . "$conv $flags >$file";
$cmd = ">" . $file if $conv =~ /^NONE/;
print "built the command $cmd to write image\n" if $PDL::IO::Pic::debug>10;
$iraw = 1 if (defined($$hints{IFORM}) && $$hints{IFORM} =~ /RAW/);
$iraw = 0 if (defined($$hints{IFORM}) &&
$$hints{IFORM} =~ /ASCII/);
wpnm($pdl, $cmd, $iform , $iraw);
}
=head2 wmpeg
=for ref
Write an image sequence ((x,y,n) piddle) as an MPEG animation.
=for example
$anim->wmpeg("GreatAnimation.mpg");
Writes a stack of rgb images as an mpeg movie. Expects a 4-D pdl of type byte
as input. First dim has to be 3 since it is interpreted as interlaced RGB.
Some of the input data restrictions will have to be relaxed in the future but
routine serves as a proof of principle at the moment. It uses the program
mpeg_encode from the Berkeley multimedia package (see also text at the top of
this package). Mpeg parameters written by this routines haven't been tweaked
in any way yet (in other words, lots of room for improvement). For an example
how to use the routine see appropriate test that comes with this package.
Currently, wmpeg doesn't allow modification of the parameters written through
its calling interface. This will change in the future as needed.
In the future it might be much nicer to implement a movie perl object that
supplies methods for manipulating the image stack (insert, cut,
append commands) and a final movie->make() call would invoke mpeg_encode on the
picture stack (which will only be held on disk). This should get around the
problem of having to hold a huge amount of data in memory to be passed into
wmpeg (when you are, e.g. writing a large animation from PDL3D rendered
fly-throughs). Having said that, the actual storage requirements might not be
so big in the future any more if you could pass 'virtual' transform pdls into
wmpeg that will only be actually calculated when accessed by the wpic
routines, you know what I mean...
=cut
*wmpeg = \&PDL::wmpeg;
sub PDL::wmpeg {
barf 'Usage: wmpeg($pdl,$filename) ' .
'or $pdl->wmpeg($filename)' if $#_ != 1;
my ($pdl,$file) = @_;
my @Dims = $pdl->dims;
# too strict in general but alright for the moment
# especially restriction to byte will have to be relaxed
barf "input must be byte (3,x,y,z)" if (@Dims != 4) || ($Dims[0] != 3)
|| ($pdl->get_datatype != $PDL_B);
my $nims = $Dims[3];
my $tmp = gettmpdir();
my $tmpdir = "$tmp/wmpeg$$";
barf "directory $tmpdir already exists, clear up first" if -d $tmpdir;
mkdir $tmpdir,0700;
# check the pdl for correct dimensionality
# write all the images as ppms and write the appropriate parameter file
my ($i,$fname);
# add blank cells to each image to fit with 16N x 16N mpeg standard
# $frame is full frame, insert each image in as $inset
my (@MDims) = (3,map(16*int(($_+15)/16),@Dims[1..2]));
my ($frame) = zeroes(@MDims);
my ($inset) = $frame->slice(join(',',
map(int(($MDims[$_]-$Dims[$_])/2).':'.
int(($MDims[$_]+$Dims[$_])/2-1),0..2)));
my $range = sprintf "[%d-%d]",0,$nims-1;
# write the parameter file
open PAR,">$tmpdir/mpeg.params" or barf "can't open mpeg parameter file";
print PAR <<"EOT";
PATTERN IBBBBBBBBBBP
OUTPUT $file
GOP_SIZE 16
SLICES_PER_FRAME 5
BASE_FILE_FORMAT PPM
INPUT_CONVERT *
INPUT_DIR stdin
INPUT
frame.*.ppm $range
END_INPUT
PIXEL FULL
RANGE 5
PSEARCH_ALG LOGARITHMIC
BSEARCH_ALG SIMPLE
IQSCALE 6
PQSCALE 6
BQSCALE 6
REFERENCE_FRAME ORIGINAL
FORCE_ENCODE_LAST_FRAME
EOT
close PAR;
open MPEG, "| mpeg_encode $tmpdir/mpeg.params" or
barf "spawning mpeg_encode failed: $?";
binmode MPEG;
my (@slices) = $pdl->dog;
for ($i=0; $i<$nims; $i++) {
print STDERR "Writing frame $i\n";
$inset .= $slices[$i];
print MPEG "P6\n$MDims[1] $MDims[2]\n255\n";
pnmout($frame->slice(':,:,-1:0')->clump(2),
1, 0, 'PDL::IO::Pic::MPEG');
}
# clean up
close MPEG;
unlink <$tmpdir/*>;
rmdir $tmpdir or barf "couldn't delete temporary dir $tmpdir";
}
1; # Return OK status
__DATA__
# SelfLoaded code
sub piccan {
my $class = shift;
my $rw = (shift =~ /r/i) ? 'Rok' : 'Wok';
if ($#_ > -1) {
my $format = shift;
barf 'unknown format' unless defined($converter{$format});
return $converter{$format}->{$rw};
} else {
my @formats = ();
for (keys %converter) {push @formats, $_ if $converter{$_}->{$rw}}
return @formats;
}
}
sub getext {
# changed to a more os independent way
my $file = shift;
my ($base,$dir,$ext) = fileparse($file,'\.[^.]*');
$ext = $1 if $ext =~ /^.([^;]*)/; # chop off VMS version numbers
return $ext;
}
# try to figure out the format of a supposed image file from the extension
# a couple of extensions are only checked when the optional parameter
# $wmode is set (because those should have been identified by magic numbers
# when reading)
# todo: check completeness
sub chkext {
my ($ext,$wmode) = @_;
$wmode = 0 unless defined $wmode;
# there are not yet file formats which wouldn't have been identified
# by magic no's if in reading mode
if ($wmode) {
return 'PNM' if $ext =~ /^(pbm)|(pgm)|(ppm)|(pnm)$/;
return 'JPEG' if $ext =~ /^(jpg)|(jpeg)$/;
return 'TIFF' if $ext =~ /^(tiff)|(tif)$/;
return 'PCX' if $ext =~ /^pcx$/;
return 'SGI' if $ext =~ /^rgb$/;
return 'GIF' if $ext =~ /^gif$/;
return 'RAST' if $ext =~ /^(r)|(rast)$/;
return 'IFF' if $ext =~ /^(iff)|(ilbm)$/;
return 'PS' if $ext =~ /^ps/;
}
return 'UNKNOWN';
}
# try to figure out the format of a supposed image file
# from the magic numbers (numbers taken from magic in netpbm and
# the file format routines in xv)
# if no magics match try extension for non-magic file types
# todo: make more complete
sub chkform {
my $file = shift;
my ($format, $magic, $len, $ext) = ("","",0,"");
open(IMG, $file) or barf "Can't open image file";
# should first check if file is long enough
$len = read(IMG, $magic,12);
if (!defined($len) ||$len != 12) {
barf "end of file when checking magic number";
close IMG;
return 'UNKNOWN';
}
close IMG;
return 'PNM' if $magic =~ /^P[1-6]/;
return 'GIF' if $magic =~ /(^GIF87a)|(^GIF89a)/;
return 'TIFF' if $magic =~ /(^MM)|(^II)/;
return 'JPEG' if $magic =~ /^(\377\330\377)/;
return 'SGI' if $magic =~ /^(\001\332)|(\332\001)/;
return 'RAST' if $magic =~ /^\131\246\152\225/;
return 'IFF' if $magic =~ /ILBM$/;
return 'PCX' if $magic =~ /^\012[\000-\005]/;
return 'PS' if $magic =~ /%!\s*PS/;
return chkext(getext($file)); # then try extensions
}
# helper proc for wpic
# process hints for direct converter control and try to guess from extension
# otherwise
sub getconv {
my ($pdl,$file,$hints) = @_;
return ($$hints{CONVERTER},$$hints{FLAGS})
if defined($$hints{CONVERTER}); # somebody knows what he is doing
my $type = "";
if (defined($$hints{'FORMAT'})) {
$type = $$hints{'FORMAT'};
barf "unsupported (output) image format"
unless (exists($converter{$type})
&& $converter{$type}->{put} !~ /NA/);
}
else {
$type = chkext(getext($file),1);
if ($type =~ /UNKNOWN/) {
barf "can't figure out desired file type, using PNM" ;
$type = 'PNM';
}
}
my $conv = $converter{$type}->{put};
# the datatype check is only a dirty fix for the ppmquant problem with
# types > byte
# a ppmquant is anyway only warranted when $isrgb!!!
$conv = $converter{$type}->{Prefilt}.$conv
if defined($converter{$type}->{Prefilt});
my $flags = $converter{$type}->{FLAGS};
$flags = "$Dflags" unless defined($flags);
$flags .= " $$hints{XTRAFLAGS}" if defined($$hints{XTRAFLAGS});
if (defined($$hints{'COLOR'}) && $$hints{'COLOR'} =~ /bwdither/) {
$flags = " | $conv $flags";
$conv = "pgmtopbm -floyd"; }
return ($conv, $flags, $type);
}
# helper proc for wpic
# if a certain type of pnm is required check data and make compliant if possible
# else if intermediate format is pnm or ppm figure out the appropriate format
# from the pdl
sub chkpdl {
my ($pdl, $iform, $hints, $format) = @_;
if ($pdl->get_datatype >= $PDL_L ||
$pdl->get_datatype == $PDL_S ||
(!$converter{$format}->{ushortok} && $pdl->get_datatype == $PDL_US)) {
print "scaling data to type byte...\n";
$pdl = bytescl($pdl,-255);
}
my ($isrgb,$form) = (0,"");
my @Dims = $pdl->dims;
$isrgb = 1 if ($#Dims >= 2) && ($Dims[0] == 3);
barf "exspecting 2D or 3D-RGB-interlaced data as input"
unless ($isrgb || ($#Dims == 1));
$$hints{'COLOR'} = "" unless defined($$hints{'COLOR'});
if ($iform =~ /P[NP]M/) { # figure out the format from the data
$form = 'PPM' if $isrgb;
$form = 'PGM' if ($#Dims == 1) || ($$hints{'COLOR'} =~ /bwdither/i);
$form = 'PBM' if ($$hints{'COLOR'} =~ /bw/i);
$iform = $form; }
# this is the place for data conversions
if ($isrgb && ($iform =~ 'P[B,G]M')) {
print "wpic: converting to grayscale...\n";
$pdl = rgbtogr($pdl); # colour to grayscale
}
if (defined $$hints{LUT}) { # make LUT images into RGB
barf "luts only with non RGB data" if $isrgb;
print "starting palette->RGB conversion...\n" if $PDL::IO::Pic::debug;
$pdl = interlrgb($pdl,$$hints{LUT});
$iform = 'PPM'; # and tell everyone we are now RGB
print "finished conversion\n" if $PDL::IO::Pic::debug;
}
return ($pdl, $iform);
}
sub gettmpdir {
# in the future an os indep. way
# are there already VMS or Windows NT/95 users ?
my $tmpdir = '/tmp';
$tmpdir = $ENV{"TMP"} if defined $ENV{"TMP"};
$tmpdir = $ENV{"TEMP"} if defined $ENV{"TEMP"};
$tmpdir =~ s|/$||; # chop off a trailing '/'
barf "can't locate a temp dir" unless -d $tmpdir;
return $tmpdir;
}
=head1 BUGS
Currently only a random selection of converters/formats provided by
pbmplus/netpbm is supported. It is hoped that the more important formats
are covered. Other formats can be added as needed. Please send patches to
the author.
=head1 AUTHOR
Copyright (C) 1996,1997 Christian Soeller <c.soeller@auckland.ac.nz>
All rights reserved. There is no warranty. You are allowed
to redistribute this software / documentation under certain
conditions. For details, see the file COPYING in the PDL
distribution. If this file is separated from the PDL distribution,
the copyright notice should be included in the file.
=cut
|