- Add ImageMagick 6.8.3-1 sources
4
ImageMagick-6.8.3-1/PerlMagick/t/MasterImage_70x46.ppm
Normal file
39
ImageMagick-6.8.3-1/PerlMagick/t/blob.t
Normal file
|
@ -0,0 +1,39 @@
|
|||
#!/usr/bin/perl
|
||||
# Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization
|
||||
# dedicated to making software imaging solutions freely available.
|
||||
#
|
||||
# You may not use this file except in compliance with the License. You may
|
||||
# obtain a copy of the License at
|
||||
#
|
||||
# http://www.imagemagick.org/script/license.php
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
# Test image blobs.
|
||||
#
|
||||
BEGIN { $| = 1; $test=1, print "1..1\n"; }
|
||||
END {print "not ok 1\n" unless $loaded;}
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
chdir 't' || die 'Cd failed';
|
||||
|
||||
$image = new Image::Magick;
|
||||
$image->Read( 'input.miff' );
|
||||
@blob = $image->ImageToBlob();
|
||||
undef $image;
|
||||
|
||||
$image=Image::Magick->new( magick=>'MIFF' );
|
||||
$image->BlobToImage( @blob );
|
||||
|
||||
if ($image->Get('signature') ne
|
||||
'a698f2fe0c6c31f83d19554a6ec02bac79c961dd9a87e7ed217752e75eb615d7')
|
||||
{ print "not ok $test\n"; }
|
||||
else
|
||||
{ print "ok $test\n"; }
|
||||
|
||||
1;
|
9
ImageMagick-6.8.3-1/PerlMagick/t/bzlib/input.miff
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/bzlib/input.miff.bz2
Normal file
30
ImageMagick-6.8.3-1/PerlMagick/t/bzlib/read.t
Normal file
|
@ -0,0 +1,30 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Test reading an image which uses BZip compression
|
||||
#
|
||||
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
#
|
||||
|
||||
BEGIN { $| = 1; $test=1; print "1..2\n"; }
|
||||
END {print "not ok $test\n" unless $loaded;}
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't/bzlib' || die 'Cd failed';
|
||||
|
||||
#
|
||||
# Test reading BZip compressed MIFF
|
||||
#
|
||||
testRead( 'input.miff',
|
||||
'a698f2fe0c6c31f83d19554a6ec02bac79c961dd9a87e7ed217752e75eb615d7' );
|
||||
|
||||
#
|
||||
# 2) Test reading BZip stream-compressed MIFF (.bz2 extension)
|
||||
#
|
||||
print("Reading BZip stream-compressed MIFF (.bz2 extension) ...\n");
|
||||
++$test;
|
||||
testRead( 'input.miff.bz2',
|
||||
'a698f2fe0c6c31f83d19554a6ec02bac79c961dd9a87e7ed217752e75eb615d7' );
|
||||
|
27
ImageMagick-6.8.3-1/PerlMagick/t/bzlib/write.t
Normal file
|
@ -0,0 +1,27 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Test writing files using bzlib-based compression
|
||||
#
|
||||
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
#
|
||||
BEGIN { $| = 1; $test=1; print "1..1\n"; }
|
||||
END {print "not ok $test\n" unless $loaded;}
|
||||
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't/bzlib' || die 'Cd failed';
|
||||
|
||||
#
|
||||
# Test writing BZip-compressed MIFF
|
||||
#
|
||||
|
||||
testReadWrite( 'input.miff',
|
||||
'output.miff',
|
||||
q/compression=>'BZip'/,
|
||||
'a698f2fe0c6c31f83d19554a6ec02bac79c961dd9a87e7ed217752e75eb615d7' );
|
||||
|
||||
$test = 0; # Quench PERL compliaint
|
||||
|
1
ImageMagick-6.8.3-1/PerlMagick/t/cgm/input.cgm
Normal file
20
ImageMagick-6.8.3-1/PerlMagick/t/cgm/read.t
Normal file
|
@ -0,0 +1,20 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Test reading CGM files
|
||||
#
|
||||
# Written by Bob Friesenhahn
|
||||
#
|
||||
# Whenever a new test is added/removed, be sure to update the
|
||||
# 1..n ouput.
|
||||
#
|
||||
BEGIN { $| = 1; $test=1; print "1..1\n"; }
|
||||
END {print "not ok $test\n" unless $loaded;}
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't/cgm' || die 'Cd failed';
|
||||
|
||||
testReadCompare('CGM:input.cgm', '../reference/cgm/read.miff', q//, 0.0 0.0);
|
||||
|
167
ImageMagick-6.8.3-1/PerlMagick/t/composite.t
Normal file
|
@ -0,0 +1,167 @@
|
|||
#!/usr/bin/perl
|
||||
# Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization
|
||||
# dedicated to making software imaging solutions freely available.
|
||||
#
|
||||
# You may not use this file except in compliance with the License. You may
|
||||
# obtain a copy of the License at
|
||||
#
|
||||
# http://www.imagemagick.org/script/license.php
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
BEGIN { $| = 1; $test=1; print "1..18\n"; }
|
||||
END {print "not ok $test\n" unless $loaded;}
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't' || die 'Cd failed';
|
||||
|
||||
#
|
||||
# Add
|
||||
#
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'Add'/,
|
||||
'reference/composite/Add.miff', 0.2, 1.03);
|
||||
#
|
||||
# Atop
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'Atop'/,
|
||||
'reference/composite/Atop.miff', 0.1, 1.03);
|
||||
|
||||
#
|
||||
# Bumpmap
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//,q/, gravity=>'Center', compose=>'Bumpmap'/,
|
||||
'reference/composite/Bumpmap.miff', 0.1, 1.03);
|
||||
|
||||
#
|
||||
# Clear
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'Clear'/,
|
||||
'reference/composite/Clear.miff', 0.3, 1.03);
|
||||
|
||||
#
|
||||
# Copy
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'Copy'/,
|
||||
'reference/composite/Copy.miff', 0.1, 1.03);
|
||||
|
||||
#
|
||||
# CopyBlue
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'CopyBlue'/,
|
||||
'reference/composite/CopyBlue.miff', 0.1, 1.03);
|
||||
|
||||
#
|
||||
# CopyGreen
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'CopyGreen'/,
|
||||
'reference/composite/CopyGreen.miff', 0.1, 1.03);
|
||||
|
||||
#
|
||||
# CopyRed
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'CopyRed'/,
|
||||
'reference/composite/CopyRed.miff', 0.1, 1.03);
|
||||
|
||||
#
|
||||
# CopyOpacity
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'CopyOpacity'/,
|
||||
'reference/composite/CopyOpacity.miff', 0.1, 1.03);
|
||||
|
||||
#
|
||||
# Difference
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'Difference'/,
|
||||
'reference/composite/Difference.miff', 0.1, 1.03);
|
||||
|
||||
#
|
||||
# In
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'In'/,
|
||||
'reference/composite/In.miff', 0.1, 1.03);
|
||||
|
||||
#
|
||||
# Minus
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'Minus'/,
|
||||
'reference/composite/Minus.miff', 0.3, 1.03);
|
||||
|
||||
#
|
||||
# Multiply
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'Multiply'/,
|
||||
'reference/composite/Multiply.miff', 0.1, 1.03);
|
||||
|
||||
#
|
||||
# Out
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'Out'/,
|
||||
'reference/composite/Out.miff', 0.3, 1.03);
|
||||
|
||||
#
|
||||
# Over
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'Over'/,
|
||||
'reference/composite/Over.miff', 0.1, 1.03);
|
||||
|
||||
#
|
||||
# Plus
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'Plus'/,
|
||||
'reference/composite/Plus.miff', 0.1, 1.03);
|
||||
|
||||
#
|
||||
# Subtract
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'Subtract'/,
|
||||
'reference/composite/Subtract.miff', 0.1, 1.03);
|
||||
|
||||
#
|
||||
# Xor
|
||||
#
|
||||
++$test;
|
||||
testCompositeCompare('gradient:white-black',q/size=>"100x80"/,
|
||||
'input.miff', q//, q/, gravity=>'Center', compose=>'Xor'/,
|
||||
'reference/composite/Xor.miff', 0.3, 1.03);
|
||||
|
||||
1;
|
207
ImageMagick-6.8.3-1/PerlMagick/t/filter.t
Normal file
|
@ -0,0 +1,207 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization
|
||||
# dedicated to making software imaging solutions freely available.
|
||||
#
|
||||
# You may not use this file except in compliance with the License. You may
|
||||
# obtain a copy of the License at
|
||||
#
|
||||
# http://www.imagemagick.org/script/license.php
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
# Test image filters.
|
||||
#
|
||||
BEGIN { $| = 1; $test=1, print "1..58\n"; }
|
||||
END {print "not ok 1\n" unless $loaded;}
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't' || die 'Cd failed';
|
||||
use FileHandle;
|
||||
autoflush STDOUT 1;
|
||||
autoflush STDERR 1;
|
||||
|
||||
$fuzz=int(0.05*(Image::Magick->new()->QuantumRange));
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/AdaptiveThreshold.miff', 'AdaptiveThreshold', q/'5x5+5%'/, 0.30, 1.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Annotate.miff', 'Annotate', q/text=>'Magick',geometry=>'+0+20',font=>'Generic.ttf',fill=>'gold',gravity=>'North',pointsize=>14/, 0.02, 1.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Blur.miff', 'Blur', q/'0.0x1.0'/, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Border.miff', 'Border', q/geometry=>'6x6',color=>'gold'/, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Channel.miff', 'Channel', q/channel=>'red'/, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Chop.miff', 'Chop', q/geometry=>'80x80+5+10'/, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Charcoal.miff', 'Charcoal', q/'0x1'/, 0.2, 1.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', "fuzz=>$fuzz", 'reference/filter/ColorFloodfill.miff', 'ColorFloodfill', q/geometry=>"+25+45"/, 0.03, 1.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', "fuzz=>$fuzz", 'reference/filter/Colorize.miff', 'Colorize', q/fill=>"red", opacity=>"50%"/, 0.02, 0.5 );
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Contrast.miff', 'Contrast', q//, 0.06, 0.6);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Convolve.miff', 'Convolve', q/[1, 1, 1, 1, 4, 1, 1, 1, 1]/, 0.09, 0.9);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Crop.miff', 'Crop', q/geometry=>'80x80+5+10'/, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Set.miff', 'Set', q/page=>'0x0+0+0'/, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Despeckle.miff', 'Despeckle', q//, 0.08, 1.08);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Draw.miff', 'Draw', q/fill=>'none',stroke=>'gold',primitive=>'circle',points=>'60,90 60,120',strokewidth=>2/, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Edge.miff', 'Edge', q//, 0.3, 1.03);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Emboss.miff', 'Emboss', q/'0x1'/, 0.2, 1.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Equalize.miff', 'Equalize', q//, 0.2, 1.03);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Implode.miff', 'Implode', q/0.5/, 0.002, 0.2);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Flip.miff', 'Flip', q//, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Flop.miff', 'Flop', q//, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Frame.miff', 'Frame', q/'15x15+3+3'/, 0.4, 1.04);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Gamma.miff', 'Gamma', q/1.6/, 0.02, 0.2);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/GaussianBlur.miff', 'GaussianBlur', q/'0.0x1.5'/, 0.004, 0.4);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Implode.miff', 'Implode', q/0.5/, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Level.miff', 'Level', q/'20%x'/, 0.2, 1.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Magnify.miff', 'Magnify', q//, 0.05, 0.5);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', "fuzz=>$fuzz", 'reference/filter/MatteFloodfill.miff', 'MatteFloodfill', q/geometry=>"+25+45"/, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/MedianFilter.miff', 'MedianFilter', q//, 0.5, 0.9);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Minify.miff', 'Minify', q//, 0.05, 0.5);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Modulate.miff', 'Modulate', q/brightness=>110,saturation=>110,hue=>110/, 0.08, 1.08);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/QuantizeMono.miff', 'Quantize', q/colorspace=>'gray',colors=>2,dither=>'false'/, 0.9, 1.03);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/MotionBlur.miff', 'MotionBlur', q/'0x13+10-10'/, 0.003, 0.03);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Negate.miff', 'Negate', q//, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Normalize.miff', 'Normalize', q//, 0.04, 1.04);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/OilPaint.miff', 'OilPaint', q//, 0.03, 1.03);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', "fuzz=>$fuzz", 'reference/filter/Opaque.miff', 'Opaque', q/color=>"#e23834", fill=>"green"/, 0.03, 1.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Quantize.miff', 'Quantize', q//, 0.2, 1.03);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/RadialBlur.miff', 'RadialBlur', q/10/, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Raise.miff', 'Raise', q/'10x10'/, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/ReduceNoise.miff', 'ReduceNoise', q//, 0.5, 0.9);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Resize.miff', 'Resize', q/'60%'/, 0.02, 1.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Roll.miff', 'Roll', q/geometry=>'+20+10'/, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Rotate.miff', 'Rotate', q/45/, 0.4, 1.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Sample.miff', 'Sample', q/'60%'/, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Scale.miff', 'Scale', q/'60%'/, 0.008, 1.0);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Segment.miff', 'Segment', q//, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Shade.miff', 'Shade', q/geometry=>'30x30',gray=>'true'/, 0.08, 0.3);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Sharpen.miff', 'Sharpen', q/'0.0x1.0'/, 0.05, 1.05);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Shave.miff', 'Shave', q/'10x10'/, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Shear.miff', 'Shear', q/'-20x20'/, 0.4, 1.04);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/SigmoidalContrast.miff', 'SigmoidalContrast', q/"3x50%"/, 0.06, 0.6);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Solarize.miff', 'Solarize', q//, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Swirl.miff', 'Swirl', q/90/, 0.002, 0.2);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Threshold.miff', 'Threshold', q/90%/, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Trim.miff', 'Trim', q//, 0.002, 0.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/UnsharpMask.miff', 'UnsharpMask', q/'0.0x1.0'/, 0.02, 1.02);
|
||||
++$test;
|
||||
|
||||
testFilterCompare('input.miff', q//, 'reference/filter/Wave.miff', 'Wave', q/'25x150'/, 0.6, 1.06);
|
||||
++$test;
|
||||
|
||||
1;
|
BIN
ImageMagick-6.8.3-1/PerlMagick/t/fpx/input_256.fpx
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/fpx/input_bw.fpx
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/fpx/input_grayscale.fpx
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/fpx/input_jpeg.fpx
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/fpx/input_truecolor.fpx
Normal file
55
ImageMagick-6.8.3-1/PerlMagick/t/fpx/read.t
Normal file
|
@ -0,0 +1,55 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Test reading FPX images
|
||||
#
|
||||
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
#
|
||||
|
||||
BEGIN { $| = 1; $test=1; print "1..5\n"; }
|
||||
END {print "not ok $test\n" unless $loaded;}
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't/fpx' || die 'Cd failed';
|
||||
|
||||
#
|
||||
# 1) Test Black-and-white, bit_depth=1 FPX
|
||||
#
|
||||
print( "1-bit grayscale FPX ...\n" );
|
||||
testRead( 'input_bw.fpx',
|
||||
'164b30b0e46fab4b60ea891a0f13c1ec2e3c9558e647c75021f7bd2935fe1e46' );
|
||||
|
||||
#
|
||||
# 2) Test grayscale FPX
|
||||
#
|
||||
++$test;
|
||||
print( "8-bit grayscale FPX ...\n" );
|
||||
testRead( 'input_grayscale.fpx',
|
||||
'74416d622acf60c213b8dd0a4ba9ab4a46581daa8b7b4a084658fb5ae2ad1e4b' );
|
||||
|
||||
#
|
||||
# 3) Test 256 color pseudocolor FPX
|
||||
#
|
||||
++$test;
|
||||
print( "8-bit indexed-color FPX ...\n" );
|
||||
testRead( 'input_256.fpx',
|
||||
'772ef079906aa47951a09cd4ce6d62b740a391935710e7076a6716423a92db4f' );
|
||||
|
||||
#
|
||||
# 4) Test TrueColor FPX
|
||||
#
|
||||
++$test;
|
||||
print( "24-bit Truecolor FPX ...\n" );
|
||||
testRead( 'input_truecolor.fpx',
|
||||
'a698f2fe0c6c31f83d19554a6ec02bac79c961dd9a87e7ed217752e75eb615d7' );
|
||||
|
||||
#
|
||||
# 5) Test JPEG FPX
|
||||
#
|
||||
++$test;
|
||||
print( "24-bit JPEG FPX ...\n" );
|
||||
testRead( 'input_jpeg.fpx',
|
||||
'8c02bf8e953893cbd65b8a0a1fb574de50ac4cdeb2a88dbf702c8b65d82aa41b' );
|
||||
|
49
ImageMagick-6.8.3-1/PerlMagick/t/fpx/write.t
Normal file
|
@ -0,0 +1,49 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Test writing FPX images
|
||||
#
|
||||
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
#
|
||||
BEGIN { $| = 1; $test=1; print "1..4\n"; }
|
||||
END {print "not ok $test\n" unless $loaded;}
|
||||
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't/fpx' || die 'Cd failed';
|
||||
|
||||
#
|
||||
# 1) Test Black-and-white, bit_depth=1 FPX
|
||||
#
|
||||
print( "1-bit grayscale FPX ...\n" );
|
||||
testReadWrite( 'input_bw.fpx', 'output_bw.fpx', q/quality=>95/,
|
||||
'164b30b0e46fab4b60ea891a0f13c1ec2e3c9558e647c75021f7bd2935fe1e46');
|
||||
|
||||
#
|
||||
# 2) Test grayscale image
|
||||
#
|
||||
++$test;
|
||||
print( "8-bit grayscale FPX ...\n" );
|
||||
testReadWrite( 'input_grayscale.fpx',
|
||||
'output_grayscale.fpx', '',
|
||||
'74416d622acf60c213b8dd0a4ba9ab4a46581daa8b7b4a084658fb5ae2ad1e4b');
|
||||
#
|
||||
# 3) Test pseudocolor image
|
||||
#
|
||||
++$test;
|
||||
print( "8-bit indexed-color FPX ...\n" );
|
||||
testReadWrite( 'input_256.fpx',
|
||||
'output_256.fpx',
|
||||
q/quality=>54/,
|
||||
'772ef079906aa47951a09cd4ce6d62b740a391935710e7076a6716423a92db4f' );
|
||||
#
|
||||
# 4) Test truecolor image
|
||||
#
|
||||
++$test;
|
||||
print( "24-bit Truecolor FPX ...\n" );
|
||||
testReadWrite( 'input_truecolor.fpx',
|
||||
'output_truecolor.fpx',
|
||||
q/quality=>55/,
|
||||
'a698f2fe0c6c31f83d19554a6ec02bac79c961dd9a87e7ed217752e75eb615d7' );
|
103
ImageMagick-6.8.3-1/PerlMagick/t/getattribute.t
Normal file
|
@ -0,0 +1,103 @@
|
|||
#!/usr/bin/perl
|
||||
# Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization
|
||||
# dedicated to making software imaging solutions freely available.
|
||||
#
|
||||
# You may not use this file except in compliance with the License. You may
|
||||
# obtain a copy of the License at
|
||||
#
|
||||
# http://www.imagemagick.org/script/license.php
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
# Test getting attributes.
|
||||
#
|
||||
BEGIN { $| = 1; $test=1, print "1..25\n"; }
|
||||
END {print "not ok 1\n" unless $loaded;}
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't' || die 'Cd failed';
|
||||
|
||||
testGetAttribute('input.miff','base-columns','70');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','base-filename','input.miff');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','base-rows','46');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','class','DirectClass');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','colors','3019');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','columns','70');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','directory',undef);
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','gamma','0.454545');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','geometry',undef);
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','height','46');
|
||||
|
||||
++$test;
|
||||
# Returns undef
|
||||
testGetAttribute('input.miff','label',undef);
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','matte','0');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','error','0');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','montage',undef);
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','maximum-error','0');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','mean-error','0');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','rows','46');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','signature',
|
||||
'a698f2fe0c6c31f83d19554a6ec02bac79c961dd9a87e7ed217752e75eb615d7');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','texture',undef);
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','type','TrueColor');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','units','undefined units');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','view',undef);
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','width','70');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','x-resolution','72');
|
||||
|
||||
++$test;
|
||||
testGetAttribute('input.miff','y-resolution','72');
|
||||
|
||||
1;
|
BIN
ImageMagick-6.8.3-1/PerlMagick/t/hdf/input_256.hdf
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/hdf/input_truecolor.hdf
Normal file
28
ImageMagick-6.8.3-1/PerlMagick/t/hdf/read.t
Normal file
|
@ -0,0 +1,28 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Test reading HDF images
|
||||
#
|
||||
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
#
|
||||
|
||||
BEGIN { $| = 1; $test=1; print "1..2\n"; }
|
||||
END {print "not ok $test\n" unless $loaded;}
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't/hdf' || die 'Cd failed';
|
||||
|
||||
#
|
||||
# 1) Test 256 color pseudocolor HDF
|
||||
#
|
||||
testRead( 'input_256.hdf',
|
||||
'975cdb03f0fa923936f1cecf7b8a49a917493393a0eb098828ab710295195584' );
|
||||
|
||||
#
|
||||
# 2) Test TrueColor HDF
|
||||
#
|
||||
++$test;
|
||||
testRead( 'input_truecolor.hdf',
|
||||
'975cdb03f0fa923936f1cecf7b8a49a917493393a0eb098828ab710295195584' );
|
32
ImageMagick-6.8.3-1/PerlMagick/t/hdf/write.t
Normal file
|
@ -0,0 +1,32 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Test writing HDF images
|
||||
#
|
||||
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
#
|
||||
BEGIN { $| = 1; $test=1; print "1..2\n"; }
|
||||
END {print "not ok $test\n" unless $loaded;}
|
||||
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't/hdf' || die 'Cd failed';
|
||||
|
||||
#
|
||||
# 1) Test pseudocolor image
|
||||
#
|
||||
testReadWrite( 'input_256.hdf',
|
||||
'output_256.hdf',
|
||||
q/quality=>54/,
|
||||
'975cdb03f0fa923936f1cecf7b8a49a917493393a0eb098828ab710295195584' );
|
||||
|
||||
#
|
||||
# 2) Test truecolor image
|
||||
#
|
||||
++$test;
|
||||
testReadWrite( 'input_truecolor.hdf',
|
||||
'output_truecolor.hdf',
|
||||
q/quality=>55/,
|
||||
'975cdb03f0fa923936f1cecf7b8a49a917493393a0eb098828ab710295195584' );
|
1
ImageMagick-6.8.3-1/PerlMagick/t/hpgl/input.hpgl
Normal file
29
ImageMagick-6.8.3-1/PerlMagick/t/hpgl/read.t
Normal file
|
@ -0,0 +1,29 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Test Reading HP GL images
|
||||
#
|
||||
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
#
|
||||
|
||||
BEGIN { $| = 1; $test=1; print "1..1\n"; }
|
||||
END {print "not ok $test\n" unless $loaded;}
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't/hpgl' || die 'Cd failed';
|
||||
|
||||
#
|
||||
# 1) Test reading HP GL
|
||||
#
|
||||
$image=Image::Magick->new;
|
||||
$x=$image->ReadImage('input.hpgl');
|
||||
if( "$x" ) {
|
||||
print "ReadImage: $x\n";
|
||||
print "not ok $test\n";
|
||||
} else {
|
||||
print "ok $test\n";
|
||||
}
|
||||
|
||||
undef $image;
|
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.avs
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.bie
Normal file
After Width: | Height: | Size: 280 B |
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.bmp
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.bmp24
Normal file
After Width: | Height: | Size: 9.6 KiB |
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.dcx
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.dib
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.fits
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.gif
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.gif87
Normal file
After Width: | Height: | Size: 4 KiB |
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.ico
Normal file
After Width: | Height: | Size: 766 B |
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.im1
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.im24
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.im8
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.mat
Normal file
14
ImageMagick-6.8.3-1/PerlMagick/t/input.miff
Normal file
2
ImageMagick-6.8.3-1/PerlMagick/t/input.mtv
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.p7
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.pcx
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.pict
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.psd
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.rle
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.sgi
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.tga
Normal file
After Width: | Height: | Size: 9.5 KiB |
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.tim
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.viff
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.wbmp
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input.wpg
Normal file
38
ImageMagick-6.8.3-1/PerlMagick/t/input.xbm
Normal file
|
@ -0,0 +1,38 @@
|
|||
#define input_width 70
|
||||
#define input_height 46
|
||||
static char input_bits[] = {
|
||||
0xfe, 0xfe, 0xee, 0xae, 0xea, 0xaa, 0xfe, 0xae, 0x2a, 0xff, 0xff, 0xff,
|
||||
0xff, 0xfd, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xbb, 0xaa, 0xaa,
|
||||
0xfe, 0xbf, 0x3e, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0x7f, 0x37,
|
||||
0xff, 0xff, 0xef, 0xee, 0xee, 0xae, 0xee, 0xbf, 0x2a, 0xff, 0xff, 0xff,
|
||||
0xff, 0xff, 0x5f, 0xfc, 0x7f, 0x34, 0xff, 0xff, 0xff, 0xbf, 0xaa, 0xab,
|
||||
0xea, 0xbf, 0x2a, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xf5, 0x7f, 0x35,
|
||||
0xee, 0xee, 0xee, 0xaa, 0xea, 0xaa, 0xaa, 0xae, 0x2a, 0xff, 0xff, 0xff,
|
||||
0xff, 0xdf, 0xdd, 0xdd, 0x5d, 0x30, 0xbf, 0xfb, 0xfb, 0xab, 0xaa, 0xaa,
|
||||
0xaa, 0x2a, 0x28, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xf7, 0x77, 0x0f, 0x00,
|
||||
0xee, 0xea, 0xee, 0xaa, 0xaa, 0xaa, 0xaa, 0x0a, 0x08, 0xff, 0xc5, 0xdf,
|
||||
0xdf, 0xdf, 0xff, 0xdd, 0x1d, 0x00, 0xbb, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
|
||||
0xaa, 0x2a, 0x00, 0xff, 0x11, 0xfd, 0xff, 0xff, 0xff, 0x5f, 0x15, 0x00,
|
||||
0xee, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0x0a, 0x00, 0xff, 0xdd, 0xfd,
|
||||
0xff, 0xfd, 0xff, 0x5f, 0x14, 0x04, 0xba, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
|
||||
0xaa, 0xaa, 0x2a, 0xff, 0xdf, 0xf7, 0xff, 0xf7, 0xfd, 0x7f, 0x7d, 0x15,
|
||||
0xee, 0xae, 0xaa, 0xaa, 0xea, 0xaa, 0xaa, 0xaa, 0x2a, 0xff, 0xdf, 0xdd,
|
||||
0xdf, 0xff, 0xdd, 0x5d, 0xdd, 0x05, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
|
||||
0xaa, 0xaa, 0x2a, 0x7f, 0x07, 0x7d, 0x7f, 0x7d, 0xff, 0x7f, 0x5f, 0x35,
|
||||
0xae, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xae, 0x2a, 0xdf, 0xc5, 0xc7,
|
||||
0xfd, 0xfd, 0xfd, 0xdd, 0xdf, 0x1d, 0xab, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
|
||||
0xaa, 0xaf, 0x2a, 0x7f, 0xd5, 0xf7, 0xff, 0xff, 0xff, 0xff, 0x67, 0x37,
|
||||
0xaf, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xab, 0x2a, 0xff, 0xfd, 0xdf,
|
||||
0xff, 0xdd, 0xdd, 0xdf, 0xfd, 0x1d, 0xab, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa,
|
||||
0xaa, 0xba, 0x2a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x7f, 0x35,
|
||||
0xaa, 0xea, 0xaa, 0xae, 0xea, 0xea, 0xaa, 0xae, 0x2a, 0xff, 0xfd, 0xfd,
|
||||
0xdd, 0xff, 0xfd, 0xff, 0xfd, 0x1d, 0xaa, 0xea, 0xaa, 0xaa, 0xba, 0xba,
|
||||
0xab, 0xba, 0x2a, 0xff, 0xff, 0xf7, 0xf7, 0xff, 0xff, 0xff, 0x7f, 0x35,
|
||||
0xaa, 0xaa, 0xae, 0xaa, 0xee, 0xee, 0xea, 0xee, 0x2a, 0xff, 0x0f, 0xff,
|
||||
0xdd, 0xff, 0xff, 0xff, 0xff, 0x1f, 0xaa, 0x0a, 0x3a, 0xaa, 0xaa, 0xbb,
|
||||
0xfb, 0xbf, 0x2a, 0xff, 0x07, 0x1c, 0xfc, 0xff, 0xff, 0xff, 0x7f, 0x3f,
|
||||
0xaa, 0x8a, 0x08, 0xa8, 0xee, 0xee, 0xfe, 0xee, 0x2a, 0xfd, 0x01, 0x04,
|
||||
0xe0, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xaa, 0x02, 0x02, 0xa0, 0xba, 0xba,
|
||||
0xfe, 0xff, 0x2b, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0x3f,
|
||||
0xaa, 0x82, 0x00, 0x00, 0xe8, 0xee, 0xee, 0xee, 0x2f, 0xdf, 0x01, 0x00,
|
||||
0x00, 0xf0, 0xff, 0xff, 0xff, 0x3f, };
|
308
ImageMagick-6.8.3-1/PerlMagick/t/input.xpm
Normal file
|
@ -0,0 +1,308 @@
|
|||
/* XPM */
|
||||
static char *magick[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"70 46 256 2",
|
||||
" c #2b2f1e",
|
||||
". c #2d2b2b",
|
||||
"X c #2a2927",
|
||||
"o c #2d2e31",
|
||||
"O c #2d322c",
|
||||
"+ c #2d362a",
|
||||
"@ c #2e3430",
|
||||
"# c #332d2b",
|
||||
"$ c #372c2a",
|
||||
"% c #312a30",
|
||||
"& c #33332d",
|
||||
"* c #333c2c",
|
||||
"= c #3a332d",
|
||||
"- c #3a3929",
|
||||
"; c #363b33",
|
||||
": c #3b3532",
|
||||
"> c #3b3b33",
|
||||
", c #363733",
|
||||
"< c #38354c",
|
||||
"1 c #38422b",
|
||||
"2 c #394435",
|
||||
"3 c #3c464c",
|
||||
"4 c #592b1f",
|
||||
"5 c #44392d",
|
||||
"6 c #453b33",
|
||||
"7 c #553b2e",
|
||||
"8 c #583b36",
|
||||
"9 c #4c2c29",
|
||||
"0 c #69362c",
|
||||
"q c #6a3a33",
|
||||
"w c #7c3a2d",
|
||||
"e c #75372c",
|
||||
"r c #793b32",
|
||||
"t c #602e24",
|
||||
"y c #433f4e",
|
||||
"u c #493e75",
|
||||
"i c #45472c",
|
||||
"p c #484637",
|
||||
"a c #485738",
|
||||
"s c #53442e",
|
||||
"d c #5c4d3c",
|
||||
"f c #574a38",
|
||||
"g c #58543b",
|
||||
"h c #43572d",
|
||||
"j c #4a6539",
|
||||
"k c #556a3c",
|
||||
"l c #654638",
|
||||
"z c #63553b",
|
||||
"x c #764337",
|
||||
"c c #79412d",
|
||||
"v c #607c3c",
|
||||
"b c #4d4b48",
|
||||
"n c #4b5844",
|
||||
"m c #594d45",
|
||||
"M c #5a5746",
|
||||
"N c #555155",
|
||||
"B c #5c5869",
|
||||
"V c #4e4d69",
|
||||
"C c #596847",
|
||||
"Z c #5a6853",
|
||||
"A c #597845",
|
||||
"S c #597350",
|
||||
"D c #655b48",
|
||||
"F c #685e55",
|
||||
"G c #77584a",
|
||||
"H c #73544d",
|
||||
"J c #6b5a6b",
|
||||
"K c #68654b",
|
||||
"L c #6a6354",
|
||||
"P c #696657",
|
||||
"I c #647b47",
|
||||
"U c #677857",
|
||||
"Y c #716655",
|
||||
"T c #757456",
|
||||
"R c #76634c",
|
||||
"E c #6a6667",
|
||||
"W c #7b7969",
|
||||
"Q c #6d6f73",
|
||||
"! c #58588f",
|
||||
"~ c #5c5ea3",
|
||||
"^ c #5d66af",
|
||||
"/ c #665c9e",
|
||||
"( c #727196",
|
||||
") c #7977a6",
|
||||
"_ c #6e73b2",
|
||||
"` c #7478cd",
|
||||
"' c #5d843e",
|
||||
"] c #5e8447",
|
||||
"[ c #65884a",
|
||||
"{ c #6b944b",
|
||||
"} c #6d9554",
|
||||
"| c #719b4d",
|
||||
" . c #739957",
|
||||
".. c #6e8759",
|
||||
"X. c #748967",
|
||||
"o. c #778575",
|
||||
"O. c #7b9b68",
|
||||
"+. c #779877",
|
||||
"@. c #6b8e68",
|
||||
"#. c #78a658",
|
||||
"$. c #7ca567",
|
||||
"%. c #7ea675",
|
||||
"&. c #7eb065",
|
||||
"*. c #7c8d84",
|
||||
"=. c #7f83b0",
|
||||
"-. c #7baf88",
|
||||
";. c #7d87cb",
|
||||
":. c #91341d",
|
||||
">. c #873b2b",
|
||||
",. c #853b34",
|
||||
"<. c #953c2b",
|
||||
"1. c #983d34",
|
||||
"2. c #a83a29",
|
||||
"3. c #aa3c31",
|
||||
"4. c #b83a2a",
|
||||
"5. c #b73b33",
|
||||
"6. c #b63d45",
|
||||
"7. c #884336",
|
||||
"8. c #9b402b",
|
||||
"9. c #984537",
|
||||
"0. c #8c402e",
|
||||
"q. c #a7412b",
|
||||
"w. c #a74435",
|
||||
"e. c #b94437",
|
||||
"r. c #864a44",
|
||||
"t. c #87574a",
|
||||
"y. c #994447",
|
||||
"u. c #95544c",
|
||||
"i. c #975855",
|
||||
"p. c #8a5956",
|
||||
"a. c #936b5a",
|
||||
"s. c #876652",
|
||||
"d. c #946c67",
|
||||
"f. c #a94845",
|
||||
"g. c #b3524c",
|
||||
"h. c #ba5d7b",
|
||||
"j. c #b16d59",
|
||||
"k. c #b0746d",
|
||||
"l. c #c43a2b",
|
||||
"z. c #cb3a2b",
|
||||
"x. c #c93727",
|
||||
"c. c #c73c33",
|
||||
"v. c #d7372a",
|
||||
"b. c #d83a35",
|
||||
"n. c #da2e27",
|
||||
"m. c #ff1b38",
|
||||
"M. c #e72d29",
|
||||
"N. c #ec2c37",
|
||||
"B. c #e5342b",
|
||||
"V. c #ec363a",
|
||||
"C. c #e73936",
|
||||
"Z. c #f7292b",
|
||||
"A. c #f92a37",
|
||||
"S. c #f3312d",
|
||||
"D. c #f63439",
|
||||
"F. c #da3d43",
|
||||
"G. c #c03e40",
|
||||
"H. c #e93d45",
|
||||
"J. c #fc2b48",
|
||||
"K. c #f83b43",
|
||||
"L. c #fa3b58",
|
||||
"P. c #f03654",
|
||||
"I. c #ff3b66",
|
||||
"U. c #fb3e71",
|
||||
"Y. c #c84239",
|
||||
"T. c #d6443c",
|
||||
"R. c #e4423b",
|
||||
"E. c #c64b47",
|
||||
"W. c #c94a57",
|
||||
"Q. c #d84644",
|
||||
"!. c #d54954",
|
||||
"~. c #d75348",
|
||||
"^. c #cc5754",
|
||||
"/. c #cc5969",
|
||||
"(. c #d6655b",
|
||||
"). c #d56f71",
|
||||
"_. c #e74546",
|
||||
"`. c #e95657",
|
||||
"'. c #f6454a",
|
||||
"]. c #f94956",
|
||||
"[. c #ec5055",
|
||||
"{. c #fb4667",
|
||||
"}. c #fe4877",
|
||||
"|. c #fb5668",
|
||||
" X c #fd5776",
|
||||
".X c #e75a64",
|
||||
"XX c #e8645c",
|
||||
"oX c #f8686b",
|
||||
"OX c #fa6774",
|
||||
"+X c #f9737a",
|
||||
"@X c #e96f6f",
|
||||
"#X c #847597",
|
||||
"$X c #8c7dae",
|
||||
"%X c #b37498",
|
||||
"&X c #837ec8",
|
||||
"*X c #fd7985",
|
||||
"=X c #e97b84",
|
||||
"-X c #c56995",
|
||||
";X c #82865e",
|
||||
":X c #879172",
|
||||
">X c #8aa877",
|
||||
",X c #97a57c",
|
||||
"<X c #89b06e",
|
||||
"1X c #a2917c",
|
||||
"2X c #a5b979",
|
||||
"3X c #f9827c",
|
||||
"4X c #989c95",
|
||||
"5X c #869188",
|
||||
"6X c #8785bc",
|
||||
"7X c #8483a9",
|
||||
"8X c #89a889",
|
||||
"9X c #93af92",
|
||||
"0X c #8fa5a3",
|
||||
"qX c #af84aa",
|
||||
"wX c #acad91",
|
||||
"eX c #b0b1b0",
|
||||
"rX c #8988c8",
|
||||
"tX c #8886d8",
|
||||
"yX c #969bdb",
|
||||
"uX c #9691cc",
|
||||
"iX c #8d8feb",
|
||||
"pX c #9ca2ea",
|
||||
"aX c #a09bd6",
|
||||
"sX c #a9a7d9",
|
||||
"dX c #a6abfa",
|
||||
"fX c #b4b9ff",
|
||||
"gX c #a8aff3",
|
||||
"hX c #9dc393",
|
||||
"jX c #aace93",
|
||||
"kX c #a8c9af",
|
||||
"lX c #bbc5c9",
|
||||
"zX c #c2879b",
|
||||
"xX c #cfae96",
|
||||
"cX c #c4bcb8",
|
||||
"vX c #c9b9a7",
|
||||
"bX c #ff858c",
|
||||
"nX c #ff9193",
|
||||
"mX c #e1aaa4",
|
||||
"MX c #d1ceb3",
|
||||
"NX c #ede9ac",
|
||||
"BX c #e8d4bc",
|
||||
"VX c #d8cac4",
|
||||
"CX c #d1d1ce",
|
||||
"ZX c #c1c4e7",
|
||||
"AX c #d2e5c6",
|
||||
"SX c #d9e2e8",
|
||||
"DX c #ebd9d0",
|
||||
"FX c #e9ebd9",
|
||||
"GX c #f1ead5",
|
||||
"HX c #e7e4e6",
|
||||
"JX c #f4e7e8",
|
||||
"KX c #fafae9",
|
||||
"LX c #fefefd",
|
||||
"PX c #fcfaf5",
|
||||
"IX c #f1f2f2",
|
||||
"UX c #e6d6f0",
|
||||
/* pixels */
|
||||
"# & & = = = $ $ = $ $ # # # # # # & & = - 6 s 6 p s x 8.5.E.Q.'.K.V.T.4.4.q.q.8.0.<.<.<.0.1.e.e.9.7 , % $ = # . O # $ 8 H d.$X/ V V Q 4XW N ",
|
||||
". O # # $ # # = & : $ # # # # # # & & = - 6 6 5 7 p l >.2.e.Q.H.K.K.T.q.q.4.8.8.>.<.<.<.<.1.5.c.9.5 , : & & & . @ % % 5 r i.$X^ u V B *.U N ",
|
||||
". . # # # # . . # # # # # # # # # # # & = 5 5 5 5 p f 0 >.9.e.Q.D.V.e.q.q.q.<.<.<.>.>.>.7.9.c.g.p.> : = & & O O @ @ # # 9 H 6X` u < < 3 n M ",
|
||||
"o o . . . . X X . . . . . # . # # # # # = = : 5 6 6 8 7 e <.w.e.Q.Q.q.8.1.1.<.>.>.>.>.,.7.9.e.j.:XZ 6 & O O . . # @ @ % # E uX;.( B Q *.*.Z ",
|
||||
"o o o . . . X X X . X X X . . . # . . . = : : = 5 5 6 6 0 ,.1.9.w.e.8.<.<.<.<.>.>.>.w r r.9.g.1X8XQ n 2 O . # # . . . % X K 4X0XkXkX9XhX8XZ ",
|
||||
"O O . & & # # . . . . . X X . . . . $ # = : = = $ = , % 9 0 7.0.<.9.1.<.>.0.>.>.e e w 7.r.u.:X9X9X+.U n : # X . % % % % X g >X>XhXhX%.8XX.M ",
|
||||
"O & & : , : # # % o % % # # # . % # $ 5 5 5 = $ : 9 9 9 $ 9 0 ,.,.r 7.7.0.>.>.e e e r 7.r.p.o.8X8X+.@.@.Z * X X X X . X X M O.O.%.%.%.+.@.n ",
|
||||
", , , > > 6 6 : : : = $ # & & , : 5 6 6 6 6 5 = 5 : 6 5 = 9 0 ,.r.7.,.c w w e e g.j.x H R T j.k.4X>X:X%.@.Z - X X X $ $ f P ..} .@.+.+.@.n ",
|
||||
"> > 2 < 6 6 p p 6 6 6 6 6 : = & : 6 6 s 6 6 6 > : 6 r.y.7.f.9.3.3.9.3.6.w.x w 6._.^.D C s.`.J.J.L.{..X@X)././.g.y.9 $ i z ......X.+.4X*.U n ",
|
||||
", : > 6 b 6 b p 6 6 6 6 6 5 : = - 6 7 s 7 6 5 > : x ].x.<.Y.3.5.e.2.5.c.D.R.T.C.n.Y.s.s.XXK._.'.J.J.J.L.U.U.}.}. X/.8 2 W 4X4X4XeXVXCXeXU Z ",
|
||||
"@ , , > p b p p p b 6 6 5 - > : > 6 p p i 5 6 ; 6 f.2.2.q.2.2.3.3.3.e.z.M.Z.S.B.n.l.E.~.'.H.4.Y._.K.L.L.I.U.}.{. X X/.d.VXUXUXJXPXPXIXCX5Xo.",
|
||||
"& . @ , > 6 p p N 7X) B y : $ & - 5 6 8 5 = & 9 ,.2.2.<.4.l.5.2.4.c.x.v.v.S.M.x.n.v.T.R.T.l.2.2.Q.'.'.].I.}.}.}. X{.=Xs.DXLXLXLXLXLXLXJXeXeX",
|
||||
": & # & > p f f B pXfXpXuX( b < > i p > 3 V n d 9.2.3.2.4.v.b.z.b.b.R.M.Z.Z.M.v.x.v.T.~.Y.4.4.Y.Q.Q._.{.{.{.}. X X|.OX!.mXLXLXLXPXLXPXDXGXHX",
|
||||
"p > - $ : 6 f f B yXfXfXfXgX&X/ V > > b ) qXh.W.4.2.4.l.b.C.v.C.C.v.R.S.Z.Z.B.x.x.x.v.~.T.4.4.Y.~.e.~.`..X|.}. X|.|.|.W.d.JXLXLXPXPXJXVXJXPX",
|
||||
"p p p = = > p s N rXdXdXfXdXpXtX_ ! p.W.[.!.b.C.c.4.c.b.b.v.b.v.v.x.x.v.D.S.v.C.S.B.T.R.T.v.l.4.Y.4.Y.E..XOX|. X+X X=Xd.d VXLXLXLXLXPXGXKXKX",
|
||||
"m f f p 5 6 p s N 6XpXdXdXgXgXdXpX%XF.H.C.c.T.H.C.Y.Y.4.x.v.B.B.x.x.x.x.v.B.S.N.S.B.x.T.Q.~.l.l.4.4.5.e.XXoXoX@X@XOX*X:Xi VXLXLXLXKXPXKXKXKX",
|
||||
"m d m f f p f f N $XyXiXpXyXrX6X-XH.C.H.F.c.Q.H.T.Y.4.4.x.B.B.B.v.4.c.V.x.x.x.v.z.x.z.b.V.[.T.l.4.2.2.4.~.@X.XoXOXoX|.X.C GXLXLXFXAXAXKXFXFX",
|
||||
"d d d d f f f f b J ( $XtX_ ^ J F.K._.'.Q.5.Y.c.Y.e.4.x.v.B.S.Z.A.N.A.Z.x.x.B.C.Y.x.x.B.B.v.v.T.4.2.2.2.e.@X+X+X+X|.I.,XO.MXAXkX9XhXjXAXFXVX",
|
||||
"d d d f f d m d m m B / rXqX%X6.z.C.K._.c.2.c.b.Y.4.Y.x.v.S.B.M.Z.A.m.N.H.N.A.N.B._.b.b.v.l.l.~.c.c.z.4.4..XbX*X+X{.].;X[ ..I ..$.<X<X>XeXcX",
|
||||
"d f f f d d d d z z m B ( zXOXP.H.Q._.Q.3.2.c.H.R.T.x.v.B.B.S.S.N.J.J.|.|.P.n.4.Y.[.T.x.4.2.2.Q.C.S.Z.C.4.(.bX*XOX{.L.k I X.O.%.<X<X<X<XwXMX",
|
||||
"f f f f d d d d d z l J 6XqXoX].P.H.b.c.2.4.b.n.v.R.T.v.V.D.m.Z.Z.N.P. X].c.<.:.3.c.Q.l.l.4.5.T.B.Z.Z.S.x.E.nX*X XI.F.h .>X>X$.$.$.&.<X9X4X",
|
||||
"z l l d d l d d B J E _ iXuXk.XX].K.b.Y.2.g.c.x.v.B.R.v.S.'.'.M.n.n.H.F.b.l.Q.!.E.[.T.T.b.K.J.C.n.S.A.S.x.e.nX+X{.I.f.j .O.O. .O.$.#.<X<XU ",
|
||||
"l d d d d z f B $X$X_ rXuXeXxXj.Y.'.V.b.5.e.(.5.n.M.b.B.Z.S.[.[.[.`.F.V.N.].+XOX_.b.b.T.B.A.D.B.v.S.A.S.v.5.bX XI.{.7 j .O.} .#.#.| <X<XU ",
|
||||
"d d d D z m F ( _ _ ` sXNXNXNXwXd.).].V.b.4.g.~.x.R.R.M.M.n.z.[.|.OX|.N.A.'.|.|.B.C.b.b.C.C.V.v.B.S.D.S.v.5.*X XI.g.- 2 U .{ { #.| { [ j h ",
|
||||
"f d m D d F ) _ ^ ` yXZXDXVXcX5XW a.@XoXR.R.l.Y.x._._.v.B.x.4.Y.c.|.`.b.'.H.V.D.S.S.B.b.V.V.C.v.v.S.S.S.n.Q.OXI.I.r.f i a [ [ { } [ ] ] A A ",
|
||||
"p p d d F ( ) ~ _ tXyXyXaXuXrXQ M G j.@X3XXXx.x.x.v.z.v.v.Y.Y.l.5.~.T.x.S.A.A.m.A.N.b.C.C.N.B.v.v.B.B.B.v.`.{.I.W.$ i - a I ' ' { { ] ] I A ",
|
||||
"& > p d E ( ! ~ ` tXrXrXtXrX6Xp.M G ^.@X3X3Xl.4.x.v.z.x.v.x.l.z.c.c.z.n.A.A.J.A.A.D.b.b.C.D.B.v.v.n.v.v.b.|.I.I.q X + g 2XX.' { } { { ] [ [ ",
|
||||
"O . , p B ! ~ ` iX` rXtXtXrX( H K D g.`.oXT.x.x.v.n.Y.l.T.z.x.x.v.b.b.V.J.N.N.D.V.C.b.C.V.D.C.x.x.x.x.l.[.{.I.f., % i 2XjX .' | } [ ] ] [ { ",
|
||||
"+ X O > b B / iXiX&XrXrXrX#XF D D D t.`.C.n.v.v.v.x.q.x.T.x.l.x.x.v.C.D.N._.`.R.B.b.C.V.C.V.b.l.4.4.4.4.|.L.W.i 9 :XjX,Xj v { ] ] { { { } ",
|
||||
"> > : 1 p n E 6XtX$X) ) Q F D D K G w.v.B.B.v.x.v.4.4.v.R.4.4.l.b.C.C.C.'.`.Y.b.b.C.V.V.V.C.T.2.2.2.:.Y.|.!.t.- h #.<X:Xa 1 I { ] { { } { #.",
|
||||
"d g b g M D D E ( J N N D D G K t.f.4.x.b.v.v.v.v.4.2.l.T.T.T.b.C.V.C.c.4.4.b.V.V.C.C.C.C.C.Y.2.8.:.:.^.g.i.t.v 2X| a > # i [ { { } { | #.} ",
|
||||
"D D D D D D D D F D D d p d M Z a.!.v.4.z.v.v.v.v.e.:.2.x.x.B.C.V.V.v.2.2.4.T.V.V.C.C.C.b.Y.2.:.0.:.c u.u.u.a.>Xj , = : 1 [ | | | | #.#.] ",
|
||||
"F F F F F F K F D K K D p 2 2 p g g._.l.l.v.z.v.v.4.:.<.4.b._.b.5.5.2.<.8.2.4.b.C.C.R.Y.3.<.>.>.w e >.9.u.i.t.h + ; p - - 1 [ .| | #.&.] ] ",
|
||||
"F K G F F F F F L F F F M p 2 1 1 u.`.'.z.z.z.c.T.Y.3.e.Q._.Q.3.0.7.w >.>.<.<.<.4.5.4.2.<.>.>.w e e 9.7.u.i.a.I a Z a - - 1 [ | } | &.[ ] ] ",
|
||||
"D K F K L Y L K K Y L L L g i - 7.E.!.oX~.T.Q.Q.Q._._._.'.R.b.1.0.,.,.r w w e w >.>.<.>.>.w e e 0 r 7.t.u.p.M j A h 1 > = - I .} #.} ] { ] ",
|
||||
"F L Y L F F L F L F L L F K D i x y.f.E.E.T.Y.Y.Q._.Q._.C.T.c.1.>.r ,.>.>.w w w r w e r e e e 0 0 x t.u.u.R C C a 1 - > * - k .#.} ] ] { ] ",
|
||||
"K F L K L L L K Y K R F Q 4XeXW 1 1 1 > l f.F.T.T.Q.Q.Q.Q.T.T.3.>.w >.>.w w w w e e e e e e 0 0 t r u.i.R D a * 2 2 2 * , = a } #.] ] ] ] ] ",
|
||||
"F K L F K L F L L F F d.CXLXLXDX1X2 1 - . 8 ).^.b.H.Q.H.Q.Y.T.c.>.w w w w w w w r e e e 0 e 0 0 t 0 u.G p 2 + @ + 1 2 1 O & i .} A A ] ] A ",
|
||||
"L L L L P L L L L P E lXLXLXLXKXFX,Xi - b 4XJXGX).5.c.F.F.T.b.E.<.,.w >.r w r r q 0 0 0 0 0 0 t 4 0 H 6 + * , , * + 2 2 & X i O.] j A A ] C ",
|
||||
"L K L K K L L L L P B eXIXLXKXKXKXDXT p 4XJXLXLXPXmXf.5.Y.Y.Q.5.,.w w ,.r w r r 0 0 0 0 0 0 0 0 q H , & * & * + + + + 1 2 + p @.A j j A ] 3 ",
|
||||
"L L P P P L P P K E 0XHXLXLXKXIXKXMXT Q CXLXLXLXLXLXDXj.2.c.Y.w.,.,.,.r e e e 0 0 0 0 0 0 0 0 l s.P O @ + + O O + + O O 2 2 2 n 2 A j S S 2 ",
|
||||
"L L Z L P L P F Z *.SXLXLXLXFXFXGXMXwXVXIXLXLXLXLXLXLXLXxXw.4.5.1.,.H q x q q 0 e q 0 q q l l g o.n O + * + O O O O O O O + 1 + 2 j j S S + ",
|
||||
"P L L P P P E P P Q lXLXLXPXFXFXGXVXJXLXLXLXLXLXLXPXLXLXLXBXj.1.<.w q r r x l c e 0 8 8 s g g g U 1 ; * ; + @ o O O O . O O + 2 2 1 2 S n + ",
|
||||
"Z L P P P P F P S Q lXLXLXPXKXAXAXFXPXLXLXPXLXLXLXLXLXLXLXLXKXvXa.x t 0 0 l 0 l l l f D i 1 i T C * ; ; ; ; ; @ , , O O X X O O 2 2 1 2 3 @ ",
|
||||
"L L P P P P E P P Q lXLXLXPXKXMXcXJXLXLXPXLXLXLXLXLXLXPXLXLXLXLXLXKXDXvXz s s z f p p C i 1 i K D i ; > ; 2 ; 3 ; 2 2 @ @ O o o + 2 2 2 2 + ",
|
||||
"Z P P P P P P P P *.CXLXKXFXAXvXcXHXPXLXLXLXLXLXPXLXLXLXPXJXLXLXLXLXKXDXR s s g f a a i a k K g g f p p ; 2 2 2 2 2 2 3 2 2 @ 1 j j 2 2 n * "
|
||||
};
|
9
ImageMagick-6.8.3-1/PerlMagick/t/input_16.miff
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input_70x46.cmyk
Normal file
1
ImageMagick-6.8.3-1/PerlMagick/t/input_70x46.gray
Normal file
|
@ -0,0 +1 @@
|
|||
/0234323221/.//-.146:?BBCEP[bjrvtrla_^[WUTTTVXae\?63320./..>Yu<59>NPv遥V./122102220..00/01358>@?ADMTYhqtutk_^]ZWTSSRTWcj\964220//0,7PjаFF^ネW,,..-.-------../1025477:=CGIM]jqsqb[\ZXTSRQPSZfkd<54321111/.4V支G96CNX,,--++**+++,--.-...03567;@ABIS\grr^XXWURPPPOU_g}雲A4//../00.-d。茎]k紫`...-+*)'***)(+-,-+,-354369;;DRVYbhZUTTRPNMMQY\o到zU=/)--,-.-*i悚シケヲャ評/.000/.++))))*,-++.0463235635FRUSYVTRSRMLJMX\e<>梔mV:*))*+-,'^李オイ惧サ2236632/0-*++./0/037::63465218FOOPTTQOOLIHPY^l∩沁x\8&'***'%X<>駐湯}P778:=<:88621223478:>@?:8899868BRYURRMLLGnrSXcw}込酪推`:+(,,0Mju<75>窮yR89=??AA@@><;;8547<?CC?<;;:Z`Vg`\_^^_^QLdsu]csklyч鰍~t^85?[zz{′剄rX66<@BCCDD?=><:769=ACA>;;9T}`Td[_dWaiomnm`gok㏄q{nnquzzn|FBv恙惷フマーr_247;BEGHDIA<:9989=BB?<:9=cWS\XS\__dbghigcau~zo[itw{y||≠月tハ矍鴕<E79F8D>マ閲/.27=CJHW<48>YB5118<AB;425O\XV_d_Y\d]cgigbceipoeZ]ozz}}ф㈱{嬲レ<E5ACB2><EFBE9A><EFBFBD><EFBFBD>隯セキ7303:BKIcェクィ敏K@9;@=CQNM[Z_[]efdfhmggihbbbo}a[^gqrxミラ糾<E383A9>uケ<75><EFBDB9><EFBFBD>涇<EFBFBD>鉈?=615?HIY楙ツテッ<EFBE83>R:9L}竹p]W\ahkfonhrsghf_cedxm]_evjy~ш<>牛液<E6B6B2><C280>洄<EFBFBD><E6B484>IG@97=EEP清コサウァ媒g`t~uhphaeigdfhc`aksldglhj{rg_`fals<6C>㈹<EFBFBD>掉Pヒ<50><EFBE8B><EFBFBD><EFBFBD><EFBFBD>鋏<EFBFBD>NIC=@FGP鹿ョウアオウョ繋qmgnrkij\^ejga^_acjifge_tsxa`^^^c<>酎吏」秋ヒ<E7A78B><EFBE8B><EFBFBD><EFBFBD><EFBFBD><EFBFBD>PNKIGJKS<4B>洫「伯衛oqpeqqkcc^dkfgd_coa_`ccadkrSa]\[[y投侍悼~b<><62><EFBFBD>顆韜POONNMMMNc{㍽〈`lquwpbibg_^_dglkkjif_blol]`jdcaq`WYVi麿屎厭刹ネレセィィクマ睹NNNLMNPQPOXm煙<6D>equtbWhkl\aadmfeee_eqjngiwfjc_`yedf^[制「揆yw}p{滋、涕ケMMMKMNNQQPP]|囃sqmvo]Vinzv^aiiklhjoьqa[j}nc^XXoiklk[ォ」<EFBDAB>vYrヮ吏擒亟タMMMNNOPQQPNb於宦vpkeY_eegzjfmnddacv<63>dSE[asda[_ufkjj^oー」鋼mOヵ卵数<E58DB5>ゥ朧OOOOOPNZeh{白滑RhfYih`fgqji}xeaenmh_uvo〈lklppckjj`hウ怐z]Wы糾資喋噎QQQQQQN\л粥ウキozlg]iテcelifl<66>ネnf}尓~enqfkrjejkib^ャ捜zCUlユ去歯術ORTTTQ\z}┫ワ<E294AB>アk<EFBDB1>f`m{_pocdde≧棟kg|劫hjhflnkdhilkg]<5D>越o9Drマ∞<E3839E>v[TINTWT`}~k{」ヌラモコ<EFBE93>w<EFBFBD>xkbgfuvhic]fg延ixrkoljjkklkfgiljdm布}[N@Uwy|<7C>skbfAEOT_ywer彫ァ」梺lW^t嗇<74>[cgchhbed_xr`ghiegijllkhfghkjcョxl4?5Rmqw}ytrqo49FMfoWdヲ梼件<E6A2BC>Y\x墾・b^bdd`gabcchcalljgimikklhdfdffj仇~D*/Vァo<6F>ytsw--7B\aa<61>結去施^\]p<>t`cead_qcb`bhimnhinnihlnojcccaaz~wb4/Fォナpпwwvw}/,0:MYr囿<72>博}cZ]]d~qbfcg_aco_ab`bmohwピiijmmmj^``ZZ<5A>rA/8言弩nxu||z<>=<;@JRd<52>【sb\]_fdddfedf^Zjw[^bilnl{<7B>iijlnlmk]YXPl益f4G汚舟Ap~wz~c庚NNOSWZfohYUV[`cfk[`hgdef_T`iolkommd\`imkkkllnhYTOK{slhiヲ<69>:1>q<>~≡瓜\\[\^_^^\YLGNX]orc_dgedfaO\^ejkmmeXW\jonmmmlhXSPJLjfjx忙,657=s<>ャ緒v_```_cb`aaaYHACFMswb^deed_NQ]itj]^WXZY[hpqqi[SOOLETeijeE-;J97;s<><73>努u```aabbbbbbbUC?<>i<>ebfhii_dsxnYYTONQRRX_c^TPOMLHF\`gkwlMdL76<t<>鞄zvu``_cbdccdccdaO@;Zew度lnruvxxtriXUPNNMLLKMPQONKGHDL^bfhTYiL::7;j援逗qzs`acaabbbccdd_`X=V^bpqmikpprsqqjUOOOONMLLKKKKJIFDBObdfhcaU<7;76[ь<>synabcbbbbbccc\p浣y97;:Hcmlqrrrooo^PONNMMMMKJJJIFCC?KehgZL8?E<776Oヰqlsskabcbbbbccb^<5E><>笂E97-F奔jpponmofQNNMKLLLKHFGFECA;GgcL;2209D703Eャdkpqhbbbbbccddcjチ<6A><EFBE81><EFBFBD><EFBFBD><EFBFBD>J6I夲謠dhlkmmhSOMMKLMMIEDEEED=7J]@378753=A3+D虐`djr^bbbbbbdddadー<64><EFBDB0><EFBFBD>lE暮<45><E69AAE>シi\jjnaSPNLKLKIEECCCDECGU724444433<>/H~Z\[fqMdddddddfdl・<6C><EFBDA5><EFBFBD><EFBFBD>ユnuヒ<75><EFBE8B><EFBFBD><EFBFBD><EFBFBD>縲Zfl`UQOLJHGEEDBCEFHMtj.4332111/29:FPLZUek=dddddceed~゚<><EFBE9F>鐱褊マッヒ<EFBDAF><EFBE8B><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>__`VROMLLHFGEEEINOO|T-3431/0/.0/388<MSgc3dddeeddgeqハ<71><EFBE8A><EFBFBD>鱧ユ蕈<EFBE95><E89588><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ラ~YOKMLMOLJIHGF?NVYp94564200.,-/01<>8CbW0cdeeedeggqテ<71><EFBE83><EFBFBD><EFBFBD>ユ碾<EFBE95><E7A2BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>TA@FKIIJJJ\C<Dl[4:::::9840.+,.0AD8IK4bceddefgfpヘ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ソ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>タVGMNNLKaE?EdXD<;;<<><=;93.-+.ACAD5`cgffffeg<65><67><EFBFBD>タタ脯<EFBE80><E884AF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>臚IMMKKIGL^`SRPH@<<>==>?A@<9=SUDIR;
|
1
ImageMagick-6.8.3-1/PerlMagick/t/input_70x46.rgb
Normal file
1
ImageMagick-6.8.3-1/PerlMagick/t/input_70x46.rgba
Normal file
1
ImageMagick-6.8.3-1/PerlMagick/t/input_70x46.uyvy
Normal file
1
ImageMagick-6.8.3-1/PerlMagick/t/input_70x46.yuv
Normal file
|
@ -0,0 +1 @@
|
|||
/0234323221/.//-.146:?BBCEP[bjrvtrla_^[WUTTTVXae\?63320./..>Yu卼NPv梱V./122102220..00/01358>@?ADMTYhqtutk_^]ZWTSSRTWcj\964220//0,7Pj刾FF^僱W,,..-.-------../1025477:=CGIM]jqsqb[\ZXTSRQPSZfkd<54321111/.4V巟G96CNX,,--++**+++,--.-...03567;@ABIS\grr^XXWURPPPOU_g}塤A4//../00.-d<>s]k巼`...-+*)'***)(+-,-+,-354369;;DRVYbhZUTTRPNMMQY\o摓zU=/)--,-.-*i湠脊Μ昡/.000/.++))))*,-++.0463235635FRUSYVTRSRMLJMX\e劄瀴mV:*))*+-,'^棝挡湝僒2236632/0-*++./0/037::63465218FOOPTTQOOLIHPY^l嚊煄x\8&'***'%X唽挀搾}P778:=<:88621223478:>@?:8899868BRYURRMLLGnrSXcw}崬棌悇`:+(,,0Mju唴媷yR89=??AA@@><;;8547<?CC?<;;:Z`Vg`\_^^_^QLdsu]cs€kly剦妭~t^85?[zz{亴檷rX66<@BCCDD?=><:769=ACA>;;9T}`Td[_dWaiomnm`gok噒q{nnquzz値|FBv湙湸滔皉_247;BEGHDIA<:9989=BB?<:9=cWS\XS\__dbghigcau~zo[itw{y||亗寧€t梳蓍鲻煜墈/.27=CJHW厎YB5118<AB;425O\XV_d_Y\d]cgigbceipoeZ]ozz}}剢噴{沯<><E6B2AF><EFBFBD><EFBFBD><EFBFBD>痉7303:BKIc<49>〞qK@9;@=CQNM[Z_[]efdfhmggihbbbo}a[^gqrx儈儔媻啈u哈<75><E59388>羿珉?=615?HIY灱旅瘏fR:9L}抾p]W\ahkfonhrsghf_cedxm]_evjy~剨厠媿塼€棹<E282AC><E6A3B9>羊鳬G@97=EEP惔夯厂攠g`t~uhphaeigdfhc`aksldglhj{rg_`fals厱噷槑漿P她<50><E5A5B9>珲鵑NIC=@FGP幁<50>钡钞宷qmgnrkij\^ejga^_acjifge_tsxa`^^^c剸拺棛<E68BBA>H<EFBFBD><48><EFBFBD><EFBFBD><EFBFBD>鵔PNKIGJKS劃煣<E58A83>寜qoqpeqqkcc^dkfgd_coa_`ccadkr俽a]\[[y搳帢搲~b<><62><EFBFBD>镗梓栝POONNMMMNc{噹乹`lquwpbibg_^_dglkkjif_blol]`jdcaq`WYVi枦洕墋檵融鲸ǜ厢螻NNLMNPQPOXm墝坈equtbWhkl\aadmfeee_eqjngiwfjc_`yedf^[惂<>剏€w}p{帬<>豆MMMKMNNQQPP]|殥sqmvo]Vinzv^aiiklhjo剮qa[j}nc^XXoiklk[€<>榾vYr儙棛潬槻繫MMNNOPQQPNb墬泚vpkeY_eegzjfmnddacv<63>dSE[asda[_ufkjj^o埃峾mO儠棏悢槤<E682A2>OOOOOOPNZeh{敀妸俼hfYih`fgqji}xeaenmh_uvo乹lklppckjj`h硿亃]W剭媻帒挐歺QQQQQQN\€剕姛撤€ozlg]i僥celifl倆僱nf}洉~enqfkrjejkib^瑧{zCU倢儐嫀帟弍ORTTTQ\z乸劜荜岜倠唋f`m{_pocdde亞搹kg|崊hjhflnkdhilkg]爥zo9Dr儅亣垇v[TINTWT`}~k{G子簠jw様xkbgfuvhic]fg墑ixrkoljjkklkfgiljdm晍}[N@Uwy|倇skbfAEOT_ywer挙В瀿lW^t殽坄[cgchhbed_xr`ghiegijllkhfghkjc儑xl4?5Rmqw}ytrqo49FMfoWd儝搸審坒Y\x崵<78>^bdd`gabcchcalljgimikklhdfdffj媤~D*/V<>o倈ytsw--7B\aa厭寢嫀巤^\]p啎t`cead_qcb`bhimnhinnihlnojcccaaz~wb4/F<>€p剚wwvw}/,0:MYr殰垕攷}cZ]]d~qbfcg_aco_ab`bmohw僺iijmmmj^``ZZ唞rA/8尵淲nxu||z<>=<;@JRd垥亂€sb\]_fdddfedf^Zjw[^bilnl{刱iijlnlmk]YXPl塿f4G墭廙Ap~wz~們峂NNOSWZfohYUV[`cfk[`hgdef_T`iolkommd\`imkkkllnhYTOK{slhi<68>T:1>q倊€~噾塟\\[\^_^^\YLGNX]orc_dgedfaO\^ejkmmeXW\jonmmmlhXSPJLjfjx朲,657=s垊儍弿v_```_cb`aaaYHACFMswb^deed_NQ]itj]^WXZY[hpqqi[SOOLETeijeE-;J97;s垍啂搘u```aabbbbbbbUC?<>i厈ebfhii_dsxnYYTONQRRX_c^TPOMLHF\`gkwlMdL76<t垍姄zvu``_cbdccdccdaO@;Zew搙lnruvxxtriXUPNNMLLKMPQONKGHDL^bfhTYiL::7;j墖悁qzs`acaabbbccdd_`X=V^bpqmikpprsqqjUOOOONMLLKKKKJIFDBObdfhcaU<7;76[剮唍synabcbbbbbccc\p煰y97;:Hcmlqrrrooo^PONNMMMMKJJJIFCC?KehgZL8?E<776O儛qlsskabcbbbbccb^佇<><E4BD87>鈸E97-F杬jpponmofQNNMKLLLKHFGFECA;GgcL;2209D703E儍dkpqhbbbbbccddcj<63><6A><EFBFBD><EFBFBD>霟J6I氾鎻dhlkmmhSOMMKLMMIEDEEED=7J]@378753=A3+D媠`djr^bbbbbbdddad镑<64><E99591>趌E曢<45><E69BA2><EFBFBD>i\jjnaSPNLKLKIEECCCDECGU724444433<>/H~Z\[fqMdddddddfdlュ<6C><E383A5><EFBFBD>課u塔<75><E5A194><EFBFBD>銆Zfl`UQOLJHGEEDBCEFHMtj.4332111/29:FPLZUek=dddddceed~<7E><><EFBFBD><EFBFBD>屙席笋<E5B8AD><E7AC8B><EFBFBD><EFBFBD><EFBFBD>__`VROMLLHFGEEEINOO|T-3431/0/.0/388<MSgc3dddeeddgeq漱<71>殚逭潼<E980AD><E6BDBC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>讆YOKMLMOLJIHGF?NVYp94564200.,-/01<>8CbW0cdeeedeggq谬<71>蜉蔗<E89C89><E89497><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>TA@FKIIJJJ\C<Dl[4:::::9840.+,.0AD8IK4bceddefgfp威<EFBFBD>蛭块<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>诶VGMNNLKaE?EdXD<;;<<><=;93.-+.ACAD5`cgffffeg呄<67>胴览沱<E8A788><E6B2B1><EFBFBD><EFBFBD><EFBFBD>铥<EFBFBD><E993A5>鋏IMMKKIGL^`SRPH@<<>==>?A@<9=SUDIR;~}{}}}}}{{ywuofgcdcdihhel~}}~u拺倄€~|~~~}~}|{ywujfacefikkes}}~~t殶墊倎~€€€€€~~}{|slgihjjnqouw{~~}~zwv}}|}個|€{yz}{{rpnkkopqsurx}倊olnu}}|{{yz|{wwy{vpiggqrfqmkkprtwxlnoyu~}zxx{x||yu|wfafed^[Zgefdhtztuz妬倈||{u嚙泦u噥kcbcba[[[cebgenwqms€|xwy{v仹ェ<E4BBB9>lhcb``^\`b_^hbbekqmow€€}rvvvv€煢<E282AC>ahgdba`_f]_`^dabfcliqo€zuuuuutw啞廮agdc_][\hfbbc_bccennojnjgvsrsutv榟jedc[`baamfdgead_^_mqpijgbmttts憽杔eceg`^]hhgdmdc`b^__oqtkff_iuus挦<73>€|l`c_d_`jjec^^a`[`^msuoafem{y儨<79><E584A8>xlka___bbbafdc`_[[at{ujcdfgz}€櫜<E282AC>|tmb[]aa___ec`ccba`jtzimddfawwvw唨wqre_^^cabcacbc_bdfkooaq|hd`]vvvwssuyud_^^dbeghec_`hiklpq{y{ha`evvvwtwvwpieeefcflpomlhlnpnqtkv{hafdvvvvvw{zwytidfddkmloppprqrtvwx~ochiwwwvv}€nq}{nffdlloprrrrrwy|}y{ujljwxxyu厐{xr~€yecnopqsttqt|||}~|xtprwwwzt<7A>xr}€亐gjqtttstqt|||}}}|zw{wwxzt唦ux€}}€upptttqt{|}~~€|vy€們剟剟剛們厙櫤蛙撕勃<E69295>辅倐亐厹剙~€€€儌儍們亖剠噳<E589A0>芙动┄β檭亅~€巬€~{~亐€€€倐儎噭櫖栋<E6AB96>ǎ牞s~€儌€儂oot亖剚倐€厗剠攧櫐·<E6AB90>灊vllv個}倅qou€倐剠厒儑垎仮<E59E8E>扯瓱蛵旇谀醇<E8B080>唙uvu€€亖儎厓倓厗伨炊独垅痈莺哲茏卸唴剢|亖亣€v{€亖yyǜ盘托爿退纠庞盅盐泘倖厔儍厔uxwu毿巳男矣殊暂嗡瓶滥钥箘€亐儐噰厓yuv<75>星塘手团上糖铀抗久盼x€v{垐増墖剘樓吡闷圃劓褡嬗研魄司九趖upo唺妸増巟镭细桃哨腴垩逗侨抛嫠沸莚qrmv墘墘}x{嫿芈丛裔咸兽鞘椭湔嫦狠憊qrot噰坿ux€厒地盟讨潦少纵再僬嘣芹倇qqpw唨{xz|伣灯粕掀惹滏晷壑研袜<E7A094>zrstv~~|yz厗欀又了莆州淘遮欣街縹{vuqsq厖唴厒剦椈昭魏紊照劳刂仄皑硱y{€xqqm厖厖厔倉呎翘童轮碌傲孜将ⅴ湗{€wqpp厖厗厗剝澞惹适掌イ<E68E8C>Н¥灈<EFBFA5>x|woor剟剠厙們~€徤烫仁うあ<E38186>潪殹憐|}}}prr儍儏厑€€~€儊才送<E6898D><E98081>洐槡棏{}z~}put倐倓倇€亐}€€壗溃<E5A397>灇槞檳|}~~~z{xuu倐倕亃€儑€€€}€Ξ槡槣攱剘~}}}}|||{{亖倕~x€剙€€~€€噷媴€|亝~}}~~}~{xy
|
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input_gray_lsb_08bit.mat
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input_gray_lsb_double.mat
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input_gray_msb_08bit.mat
Normal file
92
ImageMagick-6.8.3-1/PerlMagick/t/input_p1.pbm
Normal file
|
@ -0,0 +1,92 @@
|
|||
P1
|
||||
70 46
|
||||
0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 0 1 0 1 0 1
|
||||
0 1 1 1 0 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1
|
||||
0 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1
|
||||
0 1 0 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0
|
||||
1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 0 1 1 1 0 1 0 1 0 1
|
||||
0 1 0 1 0 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0
|
||||
1 0 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1
|
||||
0 1 1 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1
|
||||
0 1 0 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0
|
||||
1 1 1 0 1 1 1 0 1 0 0 0 0 0 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 0 1
|
||||
1 1 1 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1
|
||||
0 1 0 1 0 1 0 0 0 0 0 1 0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 0 1 1
|
||||
1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 1 1 0 1 0 1 0 1 1 1 0 1 1 1 0 1 1 1
|
||||
0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1
|
||||
0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 1 1 1 1 0 1 1 1 1
|
||||
1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0
|
||||
0 0 0 0 0 0 0 0 1 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1
|
||||
0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0
|
||||
0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 0 0 0 1 0 0 0 1 0 1 1 1 1 1 0 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 0 0 0 0 0
|
||||
0 0 0 0 0 1 1 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1
|
||||
0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0
|
||||
0 0 1 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0
|
||||
0 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1
|
||||
0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1
|
||||
1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 1 0 1 0 1 0 1 0 0 1 1 1
|
||||
0 1 1 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1
|
||||
0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 0
|
||||
1 1 1 0 1 1 1 0 1 1 1 0 1 0 1 0 1 1 1 0 1 1 1 0 1 0 1 0 0 1 0 1 0 1 0 1
|
||||
0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1
|
||||
0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1 1 0 1 1
|
||||
1 0 0 0 0 0 1 0 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 0 1 1 1 1 1 0 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 1 0 1 0 1 0 1 1 0 1 0 1 0 1 0 1 0 1 0 1
|
||||
0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1
|
||||
0 1 0 1 0 1 0 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 1 1 1 1 1 0 1 1 1 0 1 0 0 0
|
||||
1 1 1 1 1 0 0 0 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0
|
||||
1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1
|
||||
0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1
|
||||
0 1 0 1 1 1 1 1 0 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 1 1 1
|
||||
1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 0 0 1 1 0 1 1 1 0 1 1 1 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1
|
||||
0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 0 1 0 1
|
||||
1 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 0
|
||||
1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 0
|
||||
1 0 1 1 1 1 1 0 1 1 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1
|
||||
0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1
|
||||
1 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1
|
||||
1 0 1 0 1 0 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 1 1
|
||||
0 1 0 1 0 1 0 1 0 1 1 1 0 1 0 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 1 1 0 1 0 1
|
||||
0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 0
|
||||
1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0
|
||||
1 1 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1
|
||||
0 1 0 1 1 1 0 1 0 1 0 1 1 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 1 1 0 1 0 1 0 1
|
||||
0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 1
|
||||
0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1
|
||||
0 1 1 1 0 1 1 1 0 1 1 1 0 1 0 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 0 1 0 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 0 1
|
||||
0 1 0 1 0 1 0 1 0 0 0 0 0 1 0 1 0 1 0 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1
|
||||
1 1 0 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 0 1 0 1 0 1
|
||||
0 1 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 1 0 1 1 1 0 1 1 1 0 1 1 1
|
||||
0 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 0 1 0 1 1 0 1 1 1 1 1 1 1 0
|
||||
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 0 1 0 0
|
||||
0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 1 1 0 1 0 1 0 1 1 1 0 1
|
||||
0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 0 1 0 0 0 0 0 1
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1
|
||||
0 1 1 1 0 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
127
ImageMagick-6.8.3-1/PerlMagick/t/input_p2.pgm
Normal file
|
@ -0,0 +1,127 @@
|
|||
P2
|
||||
70 46
|
||||
255
|
||||
7 8 8 9 9 9 8 9 8 8 8 7 7 7 7 7 7 8 9 9 11 13 14 14 15 16 23 34 44 53 67 75 79
|
||||
75 60 45 42 40 37 32 30 29 30 30 31 33 43 48 33 14 10 9 9 8 8 7 7 7 7 13 29 49
|
||||
61 47 20 21 47 79 49 24 7 7 8 8 8 8 8 8 8 8 8 7 7 8 8 7 8 8 9 9 10 12 13 13 14
|
||||
15 21 28 37 48 65 73 82 79 58 42 41 40 36 32 30 29 29 28 30 32 46 54 33 11 9 9
|
||||
8 8 8 7 7 8 7 10 23 41 61 44 17 16 29 58 39 24 6 7 7 7 7 7 7 7 7 7 7 7 7 7 7 8
|
||||
8 8 8 9 9 10 10 11 12 14 17 19 24 36 51 65 78 72 46 37 38 37 33 29 29 28 27 26
|
||||
27 34 50 53 36 12 9 9 8 8 8 8 8 8 7 7 10 25 70 52 18 11 10 15 20 25 7 7 7 7 6
|
||||
6 6 6 6 6 6 6 7 7 7 7 7 7 7 8 9 9 10 10 12 13 14 15 21 30 37 48 66 65 38 33 34
|
||||
33 30 28 26 26 25 25 28 36 48 58 65 30 14 9 7 7 7 7 7 8 8 7 7 33 93 71 45 28
|
||||
38 70 63 31 7 7 7 7 6 6 6 5 6 6 6 6 6 6 7 7 7 6 6 7 9 9 9 9 10 11 12 12 17 27
|
||||
31 33 42 48 34 30 30 30 28 26 25 24 23 25 29 34 48 76 89 50 24 12 7 6 7 7 7 7
|
||||
7 7 6 37 86 88 131 126 100 107 78 29 7 7 8 8 8 8 7 6 6 6 6 6 6 6 7 7 6 6 7 8 9
|
||||
10 9 8 9 9 10 9 10 18 26 29 29 33 31 30 27 27 27 24 22 21 23 29 31 37 60 88 89
|
||||
65 41 24 11 6 6 6 6 6 7 7 5 29 81 85 122 116 88 88 59 23 8 8 8 10 10 9 8 7 8 7
|
||||
6 6 6 7 7 8 7 8 9 10 11 11 10 9 9 10 11 9 8 11 18 25 25 25 27 28 26 26 25 22
|
||||
20 20 24 30 32 40 63 86 91 71 57 50 28 10 5 5 6 6 6 5 5 25 62 69 75 77 77 75
|
||||
54 21 10 10 10 11 12 12 11 10 10 10 8 8 8 8 9 9 10 10 11 13 13 13 11 10 10 11
|
||||
11 10 10 10 16 27 31 27 26 25 23 22 22 21 51 50 24 26 33 48 59 74 88 80 71 73
|
||||
60 31 11 6 5 7 7 8 19 38 47 57 64 62 68 63 50 22 10 10 12 13 13 14 14 13 13 13
|
||||
12 12 12 10 9 9 10 12 13 15 15 13 12 11 11 11 31 36 28 43 38 37 39 37 39 40 36
|
||||
23 22 48 68 58 29 32 46 77 81 82 83 81 78 78 77 71 69 57 35 11 9 13 28 51 51
|
||||
52 58 69 82 68 44 26 9 10 12 13 14 15 15 15 15 13 12 12 12 11 10 10 11 12 14
|
||||
15 14 13 12 12 11 26 78 52 32 49 39 43 46 36 45 57 73 65 60 70 58 51 43 39 78
|
||||
79 67 81 81 82 83 84 87 87 89 90 97 63 17 14 47 85 82 86 117 154 160 112 44 30
|
||||
8 9 10 11 14 16 16 17 15 17 14 12 11 11 11 10 11 12 14 15 13 12 11 11 12 41 39
|
||||
34 38 37 33 38 40 42 48 53 67 77 73 63 58 50 58 73 85 65 40 52 74 83 85 86 87
|
||||
86 88 87 95 97 67 46 152 192 186 210 237 236 215 161 64 51 8 7 8 10 12 15 18
|
||||
17 24 61 54 26 14 9 8 8 10 12 14 15 11 9 8 10 26 40 36 34 43 51 44 39 41 50 48
|
||||
57 61 72 71 56 59 57 57 64 65 52 39 40 61 80 82 87 87 92 93 92 94 80 96 39 182
|
||||
255 242 246 255 253 247 214 132 121 10 9 8 9 11 14 19 18 33 105 127 103 78 43
|
||||
18 14 11 12 13 12 15 22 20 20 33 38 41 40 46 57 56 54 57 59 65 68 73 77 69 55
|
||||
54 55 63 71 46 41 44 52 61 64 76 88 84 90 92 91 93 89 98 64 128 255 253 251
|
||||
245 247 232 190 205 213 13 12 10 8 9 13 17 18 26 90 132 141 143 112 62 36 22
|
||||
11 10 19 53 76 60 57 42 37 41 48 58 65 60 68 68 61 68 77 77 77 64 53 52 55 57
|
||||
72 58 45 46 52 64 52 70 76 83 93 90 94 95 96 92 59 58 207 253 252 244 246 227
|
||||
164 227 241 17 16 13 11 10 12 16 16 21 74 121 129 131 120 103 80 55 36 33 60
|
||||
80 67 57 69 55 46 51 58 60 60 60 62 58 54 52 62 83 76 60 63 72 64 61 73 65 56
|
||||
48 46 49 46 55 60 80 101 91 93 98 91 101 52 21 155 252 252 251 252 254 205 235
|
||||
243 20 20 17 15 12 13 16 17 21 71 110 113 120 116 122 120 110 72 66 74 67 54
|
||||
59 73 64 55 54 44 49 61 63 63 55 48 49 53 57 66 68 68 75 64 51 65 65 69 50 48
|
||||
45 43 42 47 77 99 95 92 96 102 113 71 17 153 255 254 252 240 253 250 238 242
|
||||
22 21 20 18 17 17 18 19 22 60 88 92 103 94 79 69 72 70 67 70 67 50 62 70 60 50
|
||||
48 44 54 66 63 65 55 45 51 70 51 48 53 56 54 50 52 62 71 81 66 50 43 40 39 40
|
||||
64 93 84 90 101 100 91 55 33 203 255 255 223 184 207 238 207 209 21 21 21 20
|
||||
20 19 20 20 20 32 52 64 73 58 44 32 63 83 72 76 65 44 53 55 52 46 46 48 57 66
|
||||
76 81 78 74 78 74 55 53 67 69 58 46 51 65 65 57 53 62 45 36 37 35 49 95 103
|
||||
104 106 93 84 83 68 148 180 133 103 103 125 161 194 161 20 20 20 19 20 20 21
|
||||
22 21 20 25 41 66 70 66 45 52 70 82 72 48 36 53 63 57 44 49 51 59 72 64 69 73
|
||||
75 78 72 73 70 81 73 63 73 59 63 57 49 48 68 52 54 55 46 41 87 116 111 108 91
|
||||
83 56 49 54 43 53 72 93 98 90 120 125 20 20 19 19 20 20 20 22 22 21 21 29 53
|
||||
87 94 83 69 58 76 63 41 35 56 71 74 65 47 53 66 71 73 78 74 72 79 87 96 73 56
|
||||
43 55 73 62 52 47 37 38 60 63 74 78 67 45 72 120 111 102 87 78 27 44 59 71 82
|
||||
84 89 94 83 115 135 20 20 20 20 20 20 21 22 22 21 20 32 65 82 102 89 78 70 62
|
||||
52 37 43 55 61 61 75 58 57 71 77 77 79 73 69 80 100 81 53 33 23 39 48 64 52 50
|
||||
41 47 67 64 79 78 72 50 55 125 113 96 87 59 21 60 80 82 76 75 79 85 89 103 88
|
||||
21 21 21 21 21 21 21 20 27 34 35 52 81 76 70 84 89 75 62 51 37 50 52 51 62 64
|
||||
67 62 72 87 80 65 62 61 65 62 61 51 63 64 57 78 64 60 64 74 77 70 60 74 77 74
|
||||
52 48 129 106 89 87 35 25 61 72 69 68 72 76 77 90 84 49 22 22 22 22 22 22 20
|
||||
28 56 60 54 68 90 115 123 61 55 78 68 58 44 49 69 49 59 64 65 65 71 73 83 75
|
||||
78 81 60 70 68 81 106 101 76 58 64 65 63 79 83 67 61 72 79 75 56 42 120 95 87
|
||||
81 16 24 59 70 61 64 69 72 74 81 72 43 20 22 23 23 23 21 28 51 58 44 64 115
|
||||
185 215 196 114 59 78 87 69 60 46 51 66 53 70 67 62 67 60 55 81 87 100 95 76
|
||||
74 83 93 87 63 67 62 58 66 69 68 58 64 73 78 75 60 44 108 94 87 54 11 15 44 60
|
||||
56 60 65 66 60 49 28 24 18 20 23 25 23 30 54 56 41 54 96 147 174 167 127 61 37
|
||||
50 92 100 79 63 49 53 56 70 70 63 65 52 44 53 56 88 81 63 80 72 67 77 72 71 65
|
||||
64 68 70 69 60 63 71 75 74 60 59 99 86 87 29 20 13 24 49 52 55 60 54 47 40 33
|
||||
35 14 15 21 23 30 49 49 36 46 78 97 100 95 90 76 39 25 30 54 98 114 86 51 45
|
||||
52 58 54 61 61 50 50 51 47 67 61 52 68 76 79 79 80 73 64 65 69 71 65 60 61 66
|
||||
72 71 58 82 92 86 57 9 13 9 23 41 45 50 55 52 47 45 44 43 9 11 16 19 34 41 26
|
||||
35 62 78 77 72 70 72 64 35 26 28 63 85 107 114 50 45 50 57 53 52 58 51 50 51
|
||||
52 56 51 56 78 81 78 79 80 73 61 64 70 73 64 57 59 59 58 57 60 94 86 87 18 6 8
|
||||
24 101 56 44 57 60 54 52 46 46 50 7 7 10 14 28 32 33 64 79 71 69 69 74 72 51
|
||||
30 28 28 49 83 96 65 51 51 58 56 50 47 65 54 51 50 53 59 61 72 78 70 68 76 73
|
||||
64 61 66 73 77 65 54 53 53 49 48 75 88 86 40 9 7 16 107 145 57 44 62 59 50 50
|
||||
49 49 56 7 7 8 11 19 26 44 87 91 67 69 78 71 53 33 27 28 29 35 75 72 60 60 56
|
||||
63 50 46 50 63 48 49 52 53 58 68 74 69 75 82 72 64 63 65 69 72 72 62 47 45 45
|
||||
40 42 92 85 59 14 7 11 69 136 87 25 42 58 51 48 54 55 53 64 12 12 11 14 18 22
|
||||
33 64 80 58 51 56 45 32 28 29 30 36 41 58 64 64 58 53 59 44 41 60 72 41 44 50
|
||||
59 66 70 69 81 80 56 61 63 66 69 71 70 71 60 43 37 35 29 52 92 63 36 9 17 67
|
||||
82 72 20 14 43 57 50 52 56 60 61 73 19 20 20 20 22 25 26 35 42 36 26 23 24 27
|
||||
31 32 36 46 39 51 64 62 58 56 58 44 35 48 60 61 60 61 69 72 67 50 43 46 59 71
|
||||
68 67 67 68 69 69 54 37 31 27 24 64 54 43 37 38 101 64 24 11 8 13 44 60 56 58
|
||||
57 66 77 67 27 28 28 27 28 29 30 29 29 28 26 19 16 20 25 28 44 61 56 44 54 60
|
||||
57 57 58 46 29 39 47 56 68 68 71 72 58 38 36 42 60 72 74 70 67 65 62 53 37 30
|
||||
27 23 23 44 38 39 50 79 27 7 10 9 10 12 46 66 63 62 62 74 74 50 30 31 31 31 30
|
||||
32 32 31 31 31 31 26 17 14 15 16 19 53 76 51 48 56 56 56 56 45 27 29 44 61 75
|
||||
58 44 43 34 34 35 36 42 57 72 72 66 54 41 31 26 25 23 19 28 37 39 41 36 16 7 11
|
||||
18 11 10 11 46 67 64 65 73 78 50 48 31 31 31 31 31 31 32 32 32 32 32 32 23 15
|
||||
13 12 13 40 80 79 55 51 55 57 58 56 42 46 65 74 59 35 31 27 23 25 27 28 30 35
|
||||
44 49 43 33 28 25 23 22 20 20 33 34 39 42 49 39 20 33 19 10 10 12 47 67 64 69
|
||||
78 53 49 48 31 31 30 33 32 33 32 33 33 32 33 33 31 21 13 12 30 49 66 96 69 58
|
||||
60 64 67 71 70 73 74 69 55 34 28 26 24 24 23 22 22 22 25 28 29 26 24 23 21 21
|
||||
18 22 32 34 39 38 23 27 38 19 11 11 10 11 39 67 66 76 58 45 53 46 31 31 32 31
|
||||
31 32 32 32 33 33 33 33 30 30 25 12 25 36 42 55 58 59 56 56 63 66 68 68 68 68
|
||||
56 33 24 24 26 25 24 23 22 23 22 22 22 22 21 20 19 18 17 23 34 37 38 36 33 31
|
||||
24 12 10 11 10 10 28 62 73 64 43 47 52 42 31 32 33 32 32 32 32 32 33 33 32 28
|
||||
41 90 110 49 11 10 11 11 18 40 60 61 65 66 66 64 61 61 62 41 25 24 25 25 24 23
|
||||
23 23 22 21 21 21 20 19 18 17 15 21 38 39 36 27 19 11 13 15 12 10 10 10 21 60
|
||||
75 45 41 46 46 39 31 32 32 32 32 32 32 33 33 32 29 56 162 246 255 197 75 15 11
|
||||
10 7 17 84 64 63 67 65 65 61 58 64 49 28 24 24 24 23 23 23 23 21 20 19 19 18
|
||||
18 17 16 14 19 39 33 19 11 8 8 8 11 15 10 8 9 16 61 61 35 40 44 44 37 32 32 32
|
||||
32 32 32 33 33 33 32 37 136 255 255 255 251 214 90 18 10 17 83 221 204 81 49
|
||||
54 59 60 60 62 51 29 25 23 23 22 22 23 23 20 18 17 17 17 18 17 14 12 20 29 13
|
||||
9 10 10 10 9 9 12 14 9 6 15 68 46 31 34 39 45 30 32 32 32 32 32 32 33 33 33 31
|
||||
32 111 239 251 243 242 251 180 39 16 77 210 250 255 253 132 45 42 56 56 59 44
|
||||
29 25 24 23 22 22 22 21 18 17 17 16 16 17 17 16 18 24 10 8 9 9 9 9 9 9 9 12 13
|
||||
7 17 55 28 29 28 36 44 19 33 33 33 33 33 33 33 34 33 38 97 202 255 254 242 241
|
||||
251 171 41 46 152 253 254 253 255 255 197 63 40 51 54 40 28 25 24 23 21 20 20
|
||||
18 18 17 16 17 17 18 19 21 45 37 7 9 9 9 8 8 8 8 7 8 11 11 16 21 19 27 24 35
|
||||
39 12 33 33 33 33 33 32 33 34 33 54 190 255 255 248 202 201 218 160 110 154
|
||||
226 255 254 252 252 252 255 250 106 38 46 44 32 25 22 21 21 21 19 18 19 18 18
|
||||
17 19 20 21 21 52 23 7 9 9 9 8 8 8 8 7 8 8 9 10 10 12 20 23 36 33 9 33 33 33
|
||||
33 33 33 33 35 34 43 152 254 255 243 210 209 201 170 199 248 255 254 252 252
|
||||
252 251 251 252 255 175 59 34 28 23 21 21 22 22 21 20 20 19 18 17 13 20 24 26
|
||||
42 11 9 9 9 9 8 8 8 7 7 7 7 8 8 12 13 10 15 31 25 8 32 33 33 33 33 33 34 35 35
|
||||
43 140 251 254 252 228 186 171 193 241 252 254 252 252 252 252 251 252 246 253
|
||||
255 249 147 57 25 16 16 18 20 19 19 19 18 18 28 15 12 15 39 27 9 11 11 11 11
|
||||
11 11 10 9 8 7 6 7 7 8 14 15 10 17 18 9 31 32 34 33 33 33 34 35 34 42 156 254
|
||||
254 252 229 159 134 210 255 254 253 252 252 252 252 252 252 248 252 254 255
|
||||
255 255 230 179 136 25 17 20 20 20 19 19 31 16 13 16 33 26 15 12 11 11 12 12
|
||||
13 12 12 11 11 9 7 7 6 7 14 15 14 15 10 31 32 35 34 34 35 34 34 35 60 161 241
|
||||
239 214 176 136 135 197 248 252 252 253 253 251 251 250 252 252 241 219 247
|
||||
254 254 254 251 198 34 18 20 19 19 18 18 17 19 29 30 22 22 21 17 13 12 12 12
|
||||
12 12 12 13 14 13 12 11 12 23 24 15 18 22 12
|
809
ImageMagick-6.8.3-1/PerlMagick/t/input_p3.ppm
Normal file
|
@ -0,0 +1,809 @@
|
|||
P3
|
||||
70 46
|
||||
255
|
||||
48 47 45 50 48 46 54 50 47 56 51 46
|
||||
58 51 45 57 50 45 56 48 45 57 49 46
|
||||
56 48 45 56 48 45 55 47 44 53 45 42
|
||||
52 44 41 53 45 42 53 45 42 49 45 39
|
||||
49 46 39 52 49 42 55 52 45 57 54 47
|
||||
63 58 47 70 63 51 74 66 52 76 65 50
|
||||
78 66 50 85 65 50 116 68 52 154 67 51
|
||||
180 65 53 197 69 61 224 68 71 237 67 70
|
||||
246 61 66 241 60 64 214 64 59 184 63 47
|
||||
178 63 45 173 64 45 163 65 43 152 64 43
|
||||
146 63 46 145 61 44 146 61 43 147 61 42
|
||||
149 63 46 153 63 51 177 66 51 187 68 54
|
||||
149 70 57 82 58 47 58 53 51 55 50 49
|
||||
55 50 47 54 49 46 51 48 44 47 47 45
|
||||
48 47 45 51 44 45 54 43 45 80 55 56
|
||||
130 73 71 157 98 110 140 124 166 108 112 165
|
||||
80 72 110 82 76 97 117 119 124 149 154 144
|
||||
122 124 108 89 86 83 47 46 44 48 47 45
|
||||
53 48 45 55 49 45 56 49 44 56 48 44
|
||||
54 47 44 56 49 45 56 49 45 56 49 46
|
||||
55 46 44 52 45 42 52 44 42 54 47 43
|
||||
54 46 43 51 47 42 51 48 42 52 49 43
|
||||
54 51 45 55 53 48 62 56 45 69 61 50
|
||||
72 63 49 73 62 46 75 64 47 77 68 51
|
||||
105 69 52 140 64 46 166 60 45 186 71 60
|
||||
220 68 71 235 66 69 252 60 65 247 60 64
|
||||
209 65 59 177 63 45 176 63 43 173 63 44
|
||||
162 64 43 151 63 43 145 62 46 144 61 44
|
||||
145 61 42 144 59 42 145 62 45 152 62 51
|
||||
186 64 52 200 68 56 147 72 59 68 55 44
|
||||
57 53 53 57 51 49 54 50 47 54 50 46
|
||||
49 49 45 45 49 46 48 48 46 53 47 46
|
||||
50 42 44 69 50 49 120 65 53 148 89 92
|
||||
134 125 171 99 108 172 74 62 107 75 64 92
|
||||
93 94 103 128 134 126 108 112 95 89 87 83
|
||||
44 44 44 44 45 43 48 47 44 49 46 43
|
||||
50 44 40 50 45 42 48 44 43 50 44 43
|
||||
50 43 43 50 44 43 50 44 43 49 44 43
|
||||
49 44 41 51 45 44 51 45 44 51 47 44
|
||||
51 49 44 52 48 44 53 50 45 55 53 48
|
||||
58 51 44 62 54 45 64 54 45 67 56 45
|
||||
72 59 47 69 69 53 85 68 52 109 61 43
|
||||
132 57 40 159 69 52 192 72 61 220 69 64
|
||||
246 60 62 236 62 61 185 65 48 165 64 42
|
||||
169 63 45 165 62 45 155 63 44 145 62 41
|
||||
142 62 44 140 61 45 139 60 45 137 59 46
|
||||
137 63 47 155 66 49 195 64 56 195 71 68
|
||||
137 87 78 60 63 53 59 52 49 57 51 46
|
||||
53 51 46 49 52 47 45 52 46 44 52 48
|
||||
47 51 47 49 50 48 48 48 46 51 45 43
|
||||
73 46 33 108 77 78 138 135 189 107 113 198
|
||||
72 61 127 61 49 88 53 52 72 62 70 70
|
||||
73 83 73 89 90 79 44 45 47 43 45 47
|
||||
46 45 45 47 45 41 47 42 39 45 43 40
|
||||
44 42 42 44 42 42 46 43 43 46 43 43
|
||||
46 43 43 47 43 43 47 45 45 48 44 44
|
||||
48 45 46 47 45 42 50 46 44 50 46 43
|
||||
50 45 44 51 48 46 56 50 47 60 52 47
|
||||
62 52 47 65 53 45 70 57 49 72 62 55
|
||||
81 60 53 95 55 48 121 55 45 147 59 47
|
||||
163 65 51 188 69 57 222 69 64 218 72 65
|
||||
167 66 47 155 64 44 158 62 45 156 61 47
|
||||
148 61 45 140 61 43 136 60 43 135 60 44
|
||||
133 60 46 130 60 50 134 67 55 157 71 58
|
||||
186 69 64 180 103 95 143 138 121 87 101 87
|
||||
67 66 56 55 53 43 47 49 42 46 49 43
|
||||
45 48 44 45 48 47 47 48 46 48 50 46
|
||||
47 50 46 47 45 50 52 42 44 103 99 98
|
||||
154 157 206 126 135 208 105 112 158 89 92 111
|
||||
96 112 114 130 150 140 124 143 129 95 101 81
|
||||
44 47 50 43 47 50 46 46 48 45 46 45
|
||||
45 43 41 44 42 43 43 41 43 40 39 40
|
||||
42 42 43 44 42 43 44 42 43 42 41 41
|
||||
42 40 41 45 43 44 46 45 46 47 44 43
|
||||
48 44 43 46 42 41 47 43 43 48 45 45
|
||||
56 49 49 60 51 50 59 50 49 62 48 46
|
||||
65 50 47 65 55 51 66 58 54 75 54 50
|
||||
104 55 47 137 61 48 149 62 53 152 65 51
|
||||
175 68 55 186 71 60 158 63 51 146 63 44
|
||||
148 61 43 149 59 45 142 60 45 135 59 44
|
||||
135 57 41 130 57 42 127 58 46 127 63 55
|
||||
134 71 64 151 69 62 174 85 82 163 145 123
|
||||
140 171 140 114 129 112 83 90 71 60 64 51
|
||||
48 49 40 45 41 39 50 44 43 50 44 43
|
||||
48 44 42 48 45 43 48 47 43 50 42 49
|
||||
48 41 40 101 113 82 149 161 156 143 165 163
|
||||
166 202 179 164 199 176 143 182 151 153 186 152
|
||||
133 161 132 89 100 74 46 48 46 47 47 45
|
||||
47 49 46 50 49 46 51 48 45 51 47 44
|
||||
50 45 42 45 42 43 44 43 44 42 41 45
|
||||
43 40 44 45 39 44 43 40 41 44 42 41
|
||||
45 45 43 47 45 44 46 43 42 47 43 41
|
||||
52 44 41 54 47 42 59 51 46 61 52 48
|
||||
59 49 45 59 47 46 62 47 46 62 51 44
|
||||
53 57 47 57 51 44 79 44 39 105 58 45
|
||||
131 65 49 142 64 49 146 59 45 152 66 50
|
||||
148 62 50 147 60 47 137 61 46 137 63 47
|
||||
139 60 47 132 57 44 123 59 44 118 58 42
|
||||
125 59 48 134 71 59 135 75 68 149 81 79
|
||||
147 129 112 144 169 139 137 173 142 119 150 121
|
||||
92 123 90 78 94 71 61 58 51 50 39 40
|
||||
47 39 41 45 40 43 48 40 44 50 40 47
|
||||
49 43 48 48 42 48 43 39 31 91 102 64
|
||||
145 162 118 140 170 118 160 201 140 157 195 147
|
||||
132 175 126 135 173 130 118 142 112 79 91 68
|
||||
50 51 45 51 52 45 53 51 46 57 54 49
|
||||
57 54 49 58 50 46 56 48 45 51 46 44
|
||||
51 48 48 45 46 48 47 40 47 49 41 46
|
||||
47 42 44 49 46 42 49 48 42 48 49 46
|
||||
47 48 48 52 47 43 59 49 43 65 53 44
|
||||
67 56 47 65 57 48 61 53 45 59 48 47
|
||||
60 49 47 69 49 45 82 41 46 70 42 46
|
||||
55 48 41 82 47 40 106 57 46 131 58 55
|
||||
134 57 52 127 63 53 132 66 54 137 65 49
|
||||
133 62 45 136 58 43 133 59 42 118 62 41
|
||||
118 56 44 115 57 45 123 64 52 137 71 62
|
||||
136 78 69 134 100 86 122 146 113 123 175 136
|
||||
131 177 140 118 158 124 101 146 103 100 135 101
|
||||
80 102 80 52 61 48 42 38 35 46 36 38
|
||||
43 42 42 41 43 44 39 43 47 39 39 45
|
||||
41 36 34 87 92 72 126 145 106 123 156 106
|
||||
126 163 111 127 165 111 125 165 116 126 161 123
|
||||
111 137 108 76 86 68 55 56 50 55 56 50
|
||||
57 57 52 60 58 53 64 61 56 66 58 56
|
||||
65 57 53 61 55 51 60 55 53 58 53 52
|
||||
57 48 48 57 47 47 54 49 46 54 50 46
|
||||
54 51 46 54 52 49 57 55 51 63 55 50
|
||||
66 57 48 72 61 49 74 62 52 72 61 52
|
||||
66 56 48 64 54 49 63 54 50 60 57 52
|
||||
67 53 52 65 53 48 60 54 42 69 53 39
|
||||
99 54 45 135 61 59 144 66 65 132 67 59
|
||||
132 62 54 127 65 53 126 58 47 121 59 47
|
||||
117 62 46 122 52 41 185 80 76 172 91 86
|
||||
112 74 57 107 83 64 115 96 73 127 122 88
|
||||
182 102 96 191 122 114 162 161 133 143 160 126
|
||||
139 151 118 128 158 120 111 147 111 88 105 77
|
||||
63 59 41 51 41 34 37 43 33 43 47 38
|
||||
58 38 42 67 41 41 84 78 58 104 113 82
|
||||
104 131 87 107 145 92 110 154 99 107 152 104
|
||||
115 156 116 116 149 116 104 134 100 78 88 67
|
||||
56 57 51 57 58 52 62 62 56 65 63 58
|
||||
68 63 58 70 65 60 69 65 58 69 64 58
|
||||
71 63 56 69 61 52 68 59 49 67 58 51
|
||||
67 58 51 60 56 48 57 53 47 57 52 47
|
||||
60 55 48 66 60 48 73 61 48 79 65 50
|
||||
80 64 53 75 60 52 69 58 49 65 58 49
|
||||
61 60 51 71 55 48 139 69 74 154 71 73
|
||||
134 67 58 171 75 72 162 70 57 166 63 51
|
||||
168 67 53 162 69 49 170 64 50 172 62 66
|
||||
158 67 69 118 67 57 121 58 52 191 60 72
|
||||
225 69 71 195 85 80 112 89 67 96 106 72
|
||||
144 108 83 232 83 90 255 40 72 255 41 75
|
||||
249 64 86 240 77 95 228 89 104 219 102 110
|
||||
212 106 114 210 95 109 212 87 107 194 80 98
|
||||
150 70 79 82 46 40 62 51 40 71 64 45
|
||||
101 94 58 119 131 92 110 135 92 109 137 89
|
||||
115 143 100 126 152 123 140 162 142 128 150 129
|
||||
100 125 95 83 95 71 54 55 49 54 56 49
|
||||
61 61 56 66 64 59 70 65 63 72 67 62
|
||||
72 67 62 74 68 60 77 66 55 74 61 48
|
||||
72 60 45 70 61 47 69 59 48 65 57 49
|
||||
60 55 49 58 55 46 62 57 44 69 60 47
|
||||
77 63 47 79 65 48 79 62 49 75 59 49
|
||||
68 58 47 62 61 49 55 61 48 128 66 64
|
||||
237 75 93 203 51 53 155 59 35 193 63 53
|
||||
172 59 48 179 62 51 183 68 55 165 58 40
|
||||
185 62 50 209 62 56 239 56 63 225 60 60
|
||||
212 68 63 235 55 59 218 46 39 196 66 58
|
||||
146 100 79 136 99 74 222 99 94 247 59 69
|
||||
224 66 67 245 70 79 254 46 69 255 44 72
|
||||
255 48 84 255 52 92 255 58 104 255 58 111
|
||||
255 65 114 255 71 111 255 90 120 198 91 102
|
||||
97 61 51 72 67 47 127 118 100 154 159 149
|
||||
145 158 152 152 160 154 182 181 173 209 203 198
|
||||
212 204 211 176 177 177 103 123 101 87 103 76
|
||||
51 51 48 53 53 49 56 56 51 61 60 54
|
||||
68 67 57 71 71 62 74 73 59 77 73 54
|
||||
73 69 55 77 72 74 72 64 57 69 59 43
|
||||
67 57 45 63 56 48 62 56 51 61 55 49
|
||||
62 57 52 64 61 57 73 65 54 80 64 45
|
||||
72 63 45 75 56 49 67 55 52 53 61 48
|
||||
64 63 47 166 73 64 175 52 43 164 52 33
|
||||
166 65 38 169 58 36 160 54 39 169 61 50
|
||||
172 65 49 176 64 50 191 64 52 204 56 41
|
||||
232 49 43 249 43 43 243 48 41 225 54 37
|
||||
216 53 33 199 57 44 197 85 73 224 85 81
|
||||
254 65 75 223 63 65 174 59 46 196 69 59
|
||||
236 65 68 252 62 72 253 65 81 255 61 86
|
||||
254 62 104 251 62 113 252 69 119 249 74 110
|
||||
253 87 120 255 89 127 205 93 110 135 110 100
|
||||
211 200 193 224 224 234 230 214 240 245 225 249
|
||||
253 243 249 253 244 243 245 231 240 211 206 210
|
||||
133 141 131 117 129 110 49 48 45 47 46 44
|
||||
52 51 47 56 57 50 62 63 53 71 68 59
|
||||
79 75 56 77 75 52 88 87 87 128 131 165
|
||||
124 120 160 91 84 111 70 63 79 57 52 52
|
||||
54 50 38 53 50 41 58 57 46 66 61 45
|
||||
75 64 47 80 64 47 67 59 42 58 52 41
|
||||
48 52 48 66 49 45 138 54 60 174 59 47
|
||||
164 60 39 161 59 37 181 62 44 199 61 49
|
||||
184 59 49 173 57 42 179 58 43 195 63 50
|
||||
196 51 42 214 52 44 220 56 46 241 49 43
|
||||
240 47 40 212 53 32 218 52 33 212 57 44
|
||||
208 63 54 219 67 65 222 65 62 199 62 51
|
||||
174 57 40 175 61 45 213 69 64 243 70 75
|
||||
247 68 75 254 68 88 254 66 98 255 74 116
|
||||
255 75 125 254 77 122 254 84 116 243 67 99
|
||||
228 123 136 137 95 84 241 211 201 255 255 255
|
||||
255 245 255 255 248 255 255 255 254 255 254 251
|
||||
255 249 253 242 233 236 192 191 184 181 186 176
|
||||
58 56 49 54 51 45 51 48 43 55 52 44
|
||||
60 59 50 73 65 54 86 74 57 84 72 58
|
||||
100 97 114 158 165 228 172 178 255 157 161 236
|
||||
143 143 197 110 109 142 76 73 88 64 63 77
|
||||
60 57 57 65 61 40 66 67 46 56 65 57
|
||||
58 69 81 69 85 97 70 83 82 97 71 60
|
||||
148 70 55 168 61 43 174 65 45 176 59 40
|
||||
191 54 42 212 56 48 210 58 52 206 56 50
|
||||
211 58 51 215 59 50 223 63 55 235 49 39
|
||||
244 45 40 249 45 40 235 50 40 210 55 33
|
||||
207 55 34 209 53 40 217 67 60 221 86 77
|
||||
186 62 50 179 58 35 185 58 41 198 64 55
|
||||
210 72 70 216 71 72 237 70 74 251 79 92
|
||||
248 70 96 253 74 110 252 82 122 247 88 122
|
||||
253 85 113 249 83 103 255 96 112 213 75 85
|
||||
225 170 164 255 255 254 252 255 255 253 253 254
|
||||
254 250 245 255 250 249 254 240 244 234 220 219
|
||||
239 230 219 235 237 228 68 64 53 65 61 51
|
||||
59 54 45 53 50 40 58 53 47 70 61 55
|
||||
84 71 54 87 70 55 93 85 106 144 153 222
|
||||
171 184 255 181 190 255 185 190 255 167 167 239
|
||||
128 124 194 102 92 158 82 76 115 55 58 67
|
||||
58 57 55 82 74 78 134 115 155 170 129 174
|
||||
186 93 123 200 75 80 179 60 39 169 57 35
|
||||
179 58 42 193 59 45 212 60 51 225 59 51
|
||||
219 54 49 229 62 57 230 60 55 220 56 47
|
||||
227 68 57 244 63 52 251 41 41 250 43 43
|
||||
227 50 44 207 50 37 201 60 40 208 58 42
|
||||
212 55 45 228 76 72 209 67 64 187 57 36
|
||||
191 57 40 199 62 50 211 81 73 196 69 62
|
||||
224 78 73 231 81 83 240 84 97 253 86 110
|
||||
251 78 111 253 85 120 255 87 111 255 90 105
|
||||
252 87 101 202 79 84 161 116 110 250 225 224
|
||||
252 255 255 250 255 255 254 249 247 255 250 245
|
||||
250 239 240 220 206 201 249 242 224 249 251 238
|
||||
79 73 59 77 71 58 70 64 53 63 57 48
|
||||
61 54 48 65 61 56 77 69 53 83 68 46
|
||||
87 76 83 132 142 193 166 174 251 176 178 255
|
||||
178 180 255 169 172 249 156 160 237 139 141 216
|
||||
111 122 182 97 101 135 133 78 95 203 79 87
|
||||
239 76 93 220 72 82 210 59 62 230 62 62
|
||||
206 62 53 188 62 47 198 63 50 212 62 52
|
||||
217 57 47 219 51 43 218 55 47 222 56 47
|
||||
217 51 41 209 51 36 202 57 34 219 62 48
|
||||
254 56 59 247 48 53 219 50 48 223 53 52
|
||||
239 53 51 226 55 43 217 62 47 227 80 74
|
||||
220 69 73 208 61 51 194 56 43 188 60 45
|
||||
192 67 50 188 61 45 199 72 61 206 78 74
|
||||
230 92 97 254 102 118 253 80 109 250 90 117
|
||||
241 114 120 243 98 112 238 123 128 146 117 101
|
||||
86 80 65 224 195 196 255 253 255 253 254 255
|
||||
255 252 254 253 255 248 255 255 250 237 231 220
|
||||
250 248 222 251 252 233 87 78 63 86 77 63
|
||||
80 73 58 75 66 52 70 60 49 69 64 55
|
||||
76 71 53 83 71 46 86 78 81 131 139 189
|
||||
163 164 246 164 164 255 164 173 255 164 173 240
|
||||
174 173 246 160 175 254 161 171 224 186 118 141
|
||||
222 65 78 239 60 63 229 59 55 202 64 49
|
||||
209 70 59 237 61 65 224 57 60 204 64 58
|
||||
199 69 57 187 54 40 200 50 43 220 52 49
|
||||
222 59 47 223 55 41 211 52 33 196 54 33
|
||||
198 55 38 206 53 41 214 53 43 228 56 46
|
||||
233 52 50 235 45 53 247 42 48 228 49 41
|
||||
203 53 36 217 76 65 218 72 73 223 77 75
|
||||
199 56 46 193 58 40 187 59 39 183 59 42
|
||||
180 60 47 187 64 51 226 94 86 247 110 109
|
||||
246 103 112 241 103 113 237 116 114 251 111 117
|
||||
255 122 139 136 151 124 65 81 51 221 196 192
|
||||
255 255 255 255 254 255 251 255 254 238 255 240
|
||||
255 255 249 255 254 241 254 248 226 253 250 234
|
||||
91 80 65 91 79 65 89 77 63 84 74 58
|
||||
84 71 57 78 71 60 82 74 57 87 75 52
|
||||
88 81 84 127 128 170 148 151 212 149 151 228
|
||||
153 162 236 148 159 216 136 144 208 135 133 190
|
||||
197 105 149 230 61 80 226 64 58 231 62 67
|
||||
225 63 70 195 62 59 214 71 70 232 62 65
|
||||
215 63 59 196 61 49 192 63 48 185 59 43
|
||||
205 58 46 228 57 51 224 51 47 228 52 46
|
||||
209 56 42 186 59 43 198 59 54 233 60 57
|
||||
201 57 37 194 57 33 207 51 38 212 53 47
|
||||
207 55 43 200 56 38 201 61 41 219 62 53
|
||||
232 64 66 237 85 83 221 71 61 199 57 41
|
||||
183 58 42 175 60 45 172 60 46 175 58 42
|
||||
209 86 71 240 109 106 233 97 103 241 98 109
|
||||
250 110 113 255 100 108 248 87 112 117 136 105
|
||||
88 110 69 241 229 212 255 255 255 255 255 255
|
||||
226 249 230 197 235 200 226 239 213 253 248 230
|
||||
244 230 214 242 232 221 91 78 62 90 78 62
|
||||
91 78 61 88 77 60 90 76 60 87 75 63
|
||||
88 76 60 90 76 56 85 76 71 100 95 117
|
||||
119 120 154 130 128 186 137 134 205 123 123 182
|
||||
102 109 166 124 82 98 220 59 70 255 51 63
|
||||
233 69 62 238 67 78 220 66 71 182 64 53
|
||||
198 67 59 209 52 49 198 66 53 189 59 41
|
||||
190 57 37 193 58 37 212 56 40 229 52 43
|
||||
247 49 51 255 44 51 251 45 49 243 46 56
|
||||
251 40 62 246 40 48 211 48 39 205 56 40
|
||||
228 59 50 232 61 52 208 68 54 192 54 38
|
||||
202 53 41 227 55 53 229 46 47 214 52 42
|
||||
206 53 42 212 74 62 184 62 49 169 54 42
|
||||
168 58 43 166 55 38 188 72 62 238 113 114
|
||||
247 115 126 250 114 123 253 115 123 254 86 101
|
||||
249 68 97 152 160 125 125 154 103 203 204 174
|
||||
212 226 198 175 202 170 149 184 142 143 188 134
|
||||
168 199 154 206 213 186 238 222 212 221 203 197
|
||||
91 76 60 91 76 60 92 76 60 89 73 59
|
||||
90 75 59 91 76 62 94 77 60 94 80 60
|
||||
91 78 65 89 76 73 94 83 100 109 101 155
|
||||
135 127 196 155 126 180 171 113 163 181 64 71
|
||||
201 62 43 232 64 57 252 60 64 233 66 74
|
||||
191 60 55 166 57 40 199 66 56 221 59 56
|
||||
207 68 58 186 55 36 196 59 40 201 56 39
|
||||
218 52 39 238 57 46 227 52 39 238 44 36
|
||||
245 41 39 248 37 50 255 22 54 243 39 54
|
||||
237 60 68 237 49 58 254 48 58 243 43 46
|
||||
223 56 53 232 71 71 217 54 52 221 59 54
|
||||
213 53 42 196 56 38 195 56 43 219 81 71
|
||||
201 60 51 205 57 49 208 58 51 191 56 43
|
||||
179 56 45 231 107 107 255 129 137 253 122 131
|
||||
255 114 127 255 77 100 249 63 92 130 134 94
|
||||
103 135 81 124 133 92 97 126 81 101 141 89
|
||||
121 161 104 134 182 116 141 185 121 148 172 127
|
||||
192 181 166 197 181 179 91 75 58 91 75 58
|
||||
89 75 58 89 73 57 91 75 58 93 74 60
|
||||
94 75 60 94 79 59 94 79 59 95 78 58
|
||||
95 75 72 97 87 119 124 119 155 194 135 155
|
||||
245 101 119 255 52 75 228 64 70 209 67 64
|
||||
239 66 71 218 67 64 178 59 46 164 56 38
|
||||
206 64 54 236 56 59 232 77 69 214 80 65
|
||||
194 54 40 207 52 42 228 54 48 238 49 47
|
||||
242 49 57 250 45 60 245 42 60 240 45 72
|
||||
249 46 87 248 81 99 254 92 109 238 56 79
|
||||
213 48 53 184 55 38 204 67 54 226 83 78
|
||||
215 67 64 203 57 46 194 55 36 167 59 37
|
||||
172 56 41 211 70 66 222 56 51 242 51 49
|
||||
250 48 48 229 57 49 190 52 39 217 92 87
|
||||
255 135 139 252 124 132 252 107 124 251 72 97
|
||||
243 62 85 89 97 55 101 128 78 129 139 100
|
||||
126 157 109 127 171 112 136 171 111 135 177 112
|
||||
130 185 111 133 170 113 181 182 153 195 191 190
|
||||
92 75 55 92 75 54 92 75 54 93 76 55
|
||||
93 76 57 93 76 59 94 77 61 93 80 61
|
||||
93 80 61 97 77 58 99 71 62 103 93 113
|
||||
127 134 181 179 135 166 246 117 113 255 75 85
|
||||
243 63 81 231 61 71 219 60 61 199 62 52
|
||||
169 59 42 180 62 47 209 56 51 222 51 43
|
||||
219 57 39 233 77 65 210 65 51 211 58 46
|
||||
236 55 57 247 50 62 252 34 47 255 32 45
|
||||
246 33 43 238 37 55 247 59 86 255 99 112
|
||||
241 78 83 203 58 53 161 54 36 135 45 24
|
||||
173 58 48 194 56 54 216 73 69 201 59 48
|
||||
199 56 43 180 56 43 193 56 47 222 74 64
|
||||
226 51 46 252 46 49 250 45 48 240 50 44
|
||||
201 52 37 197 77 69 255 143 144 255 123 136
|
||||
255 89 116 255 63 97 210 64 83 73 89 49
|
||||
112 149 91 133 166 111 131 170 113 124 165 102
|
||||
126 163 102 127 168 107 126 176 101 134 178 110
|
||||
156 182 137 150 164 151 94 77 58 94 77 58
|
||||
94 77 58 94 77 58 94 77 58 95 76 55
|
||||
94 78 57 86 78 65 97 88 89 111 96 109
|
||||
109 100 112 112 120 168 131 140 234 153 131 205
|
||||
185 118 124 232 100 92 253 77 85 242 57 65
|
||||
222 55 55 195 66 50 169 58 43 189 71 62
|
||||
197 66 57 202 54 43 222 54 39 227 52 46
|
||||
224 68 55 220 60 46 240 48 51 255 68 78
|
||||
245 67 71 230 47 45 225 44 40 222 50 51
|
||||
223 62 67 217 63 67 220 55 56 202 51 46
|
||||
210 79 74 212 79 81 202 73 71 233 85 85
|
||||
218 69 65 212 66 58 222 60 55 243 50 61
|
||||
245 55 63 232 62 58 220 49 42 243 50 48
|
||||
248 46 50 243 48 46 205 52 37 186 72 60
|
||||
255 147 149 253 113 129 255 70 104 255 60 100
|
||||
157 65 71 78 98 60 114 150 90 121 161 99
|
||||
117 159 96 118 157 95 122 161 100 123 166 100
|
||||
123 169 90 135 179 104 137 170 118 108 130 103
|
||||
95 79 61 95 79 63 95 79 62 95 79 61
|
||||
95 79 61 96 80 55 92 76 57 95 91 97
|
||||
125 124 160 129 125 178 113 118 184 124 134 198
|
||||
154 155 199 186 175 183 200 182 150 178 112 82
|
||||
198 76 65 240 72 74 232 55 57 213 58 50
|
||||
187 55 46 186 73 63 205 102 88 193 64 51
|
||||
218 50 43 228 49 44 225 61 49 228 55 41
|
||||
240 45 41 240 53 53 241 82 88 234 74 81
|
||||
235 81 86 236 86 91 213 64 66 234 57 63
|
||||
235 45 55 242 74 86 255 111 122 255 102 118
|
||||
231 82 78 215 53 51 220 65 60 220 69 60
|
||||
224 52 48 252 44 58 255 53 63 231 54 51
|
||||
221 52 42 240 50 47 251 46 50 245 47 45
|
||||
211 53 41 178 60 51 254 136 143 248 98 119
|
||||
255 62 99 244 65 100 92 59 47 76 95 62
|
||||
117 145 94 123 158 99 111 151 87 114 154 88
|
||||
120 158 94 121 163 91 119 166 86 128 171 97
|
||||
128 159 104 101 124 86 91 77 61 95 80 64
|
||||
95 82 66 96 82 67 96 82 64 92 79 66
|
||||
99 89 97 119 119 154 119 124 185 99 106 180
|
||||
122 122 214 175 172 219 228 225 182 248 242 164
|
||||
235 232 171 184 181 145 160 121 100 214 108 103
|
||||
246 87 90 234 54 58 218 54 51 189 58 49
|
||||
187 79 65 211 88 73 208 49 39 232 62 60
|
||||
226 64 55 224 48 37 233 45 39 219 51 42
|
||||
207 57 53 238 83 87 245 86 98 255 100 111
|
||||
251 97 103 246 47 55 246 40 54 247 70 83
|
||||
250 94 102 247 84 91 223 55 51 230 54 52
|
||||
221 56 50 214 56 48 228 58 53 231 59 59
|
||||
232 54 53 216 53 43 226 54 42 243 48 45
|
||||
250 47 52 246 48 47 218 57 46 185 56 50
|
||||
252 119 130 255 82 112 255 60 100 193 74 91
|
||||
61 60 38 65 74 48 104 126 83 116 148 88
|
||||
104 146 76 109 150 81 115 155 90 115 157 84
|
||||
108 151 77 98 138 69 78 106 52 73 97 52
|
||||
84 72 56 89 76 60 95 82 66 98 86 68
|
||||
96 83 63 102 93 98 123 121 158 116 122 180
|
||||
93 102 175 108 118 193 152 157 223 193 196 231
|
||||
216 215 215 216 211 200 194 183 188 131 135 136
|
||||
111 106 101 153 106 100 227 121 117 255 103 101
|
||||
244 68 65 221 61 53 194 60 49 199 66 50
|
||||
209 60 45 227 71 70 226 73 70 224 55 48
|
||||
227 54 48 203 57 43 186 58 38 201 61 54
|
||||
208 58 65 243 91 103 235 87 94 224 55 51
|
||||
246 66 73 234 63 70 230 55 57 247 53 54
|
||||
239 53 49 238 51 48 225 58 47 223 59 51
|
||||
232 54 53 234 55 56 233 54 52 219 54 45
|
||||
224 55 40 239 49 43 244 51 53 244 48 47
|
||||
219 52 42 209 68 66 250 104 117 255 59 100
|
||||
254 64 104 128 77 71 82 80 60 69 66 45
|
||||
79 95 57 105 135 76 101 142 68 103 145 75
|
||||
110 149 85 104 143 76 94 135 69 89 125 67
|
||||
87 111 66 91 115 68 68 66 54 74 69 60
|
||||
92 77 62 96 83 62 101 95 88 122 116 145
|
||||
115 112 167 93 95 161 105 105 187 139 136 223
|
||||
157 157 222 162 161 214 160 155 214 158 150 206
|
||||
149 137 193 112 103 125 94 86 82 124 83 72
|
||||
184 89 81 236 121 115 255 128 124 239 94 90
|
||||
201 54 45 190 53 35 202 59 42 213 58 48
|
||||
207 55 44 220 57 47 220 56 47 197 60 42
|
||||
194 64 49 197 61 52 193 55 51 217 80 76
|
||||
210 75 66 204 54 36 235 47 48 248 40 58
|
||||
252 39 63 255 31 58 255 35 56 243 46 54
|
||||
223 58 53 224 60 53 234 55 53 238 51 53
|
||||
228 52 48 219 55 41 220 57 38 229 54 38
|
||||
239 53 45 237 53 41 215 52 39 237 86 92
|
||||
255 80 107 255 56 101 205 64 88 57 53 35
|
||||
65 66 51 55 56 33 81 90 52 100 121 78
|
||||
95 132 65 99 140 68 108 144 78 104 141 71
|
||||
99 134 73 99 130 74 102 127 73 98 127 68
|
||||
52 55 45 58 58 52 79 68 59 86 76 61
|
||||
103 101 108 108 106 145 81 81 138 91 93 165
|
||||
121 123 206 137 137 221 140 139 209 136 133 205
|
||||
136 129 210 141 133 200 135 130 173 126 90 106
|
||||
92 91 76 112 87 68 207 83 86 231 102 107
|
||||
239 133 127 254 129 122 197 59 45 187 59 35
|
||||
198 59 41 214 54 43 204 59 43 203 54 40
|
||||
214 58 45 200 56 40 197 58 45 200 58 47
|
||||
202 58 48 206 63 53 200 58 46 214 49 39
|
||||
249 47 55 255 43 61 250 42 62 254 36 58
|
||||
255 38 57 240 53 61 218 58 54 223 59 52
|
||||
235 53 52 241 52 56 226 54 47 213 55 41
|
||||
217 56 38 218 54 36 215 57 38 212 59 37
|
||||
215 61 52 254 87 108 255 55 99 252 67 106
|
||||
107 51 61 35 47 37 47 52 29 94 89 50
|
||||
160 179 130 115 141 96 93 131 62 109 147 75
|
||||
112 149 81 107 143 72 105 139 77 101 132 74
|
||||
102 131 72 103 137 71 42 48 38 43 48 43
|
||||
57 55 53 69 67 61 90 92 105 92 93 135
|
||||
91 90 156 121 124 214 133 136 235 130 130 218
|
||||
129 133 202 131 130 210 139 130 219 141 134 194
|
||||
126 120 137 115 87 82 96 95 72 100 95 67
|
||||
174 87 80 236 90 99 243 110 106 217 75 64
|
||||
201 55 38 200 60 39 214 56 43 213 49 40
|
||||
197 62 43 191 58 40 219 71 59 206 57 43
|
||||
201 58 41 200 55 40 206 55 40 215 60 47
|
||||
218 59 48 238 54 59 249 49 63 238 45 59
|
||||
233 51 54 245 53 56 240 55 59 225 54 53
|
||||
219 56 53 227 58 56 239 55 56 246 54 59
|
||||
226 56 52 207 56 42 204 58 41 205 58 39
|
||||
194 61 33 193 60 38 233 75 77 255 66 103
|
||||
255 54 103 167 67 79 51 54 52 56 43 47
|
||||
68 78 41 165 185 121 182 213 154 113 144 92
|
||||
93 132 61 114 152 78 111 148 82 102 138 69
|
||||
103 137 77 101 136 75 102 137 71 107 145 74
|
||||
46 50 38 43 46 40 48 49 43 58 61 48
|
||||
76 79 78 88 86 109 110 108 159 146 143 234
|
||||
147 144 246 129 127 209 132 132 199 141 141 206
|
||||
142 133 191 129 119 147 108 97 93 94 93 71
|
||||
102 93 73 106 92 69 136 89 67 230 82 81
|
||||
235 61 61 220 48 43 219 55 38 211 55 38
|
||||
225 53 43 200 53 41 189 61 43 197 60 43
|
||||
218 68 57 194 56 41 196 58 40 202 57 40
|
||||
207 52 40 216 50 41 231 59 52 241 56 60
|
||||
236 47 58 236 69 74 239 86 81 234 65 61
|
||||
225 56 50 223 56 52 226 56 56 232 56 60
|
||||
237 55 60 239 53 57 220 59 54 192 56 41
|
||||
186 61 42 186 61 42 177 57 35 182 53 41
|
||||
255 80 96 253 61 95 203 73 93 75 64 49
|
||||
45 51 37 74 51 39 134 152 101 168 212 140
|
||||
143 170 124 75 99 57 96 127 61 108 148 73
|
||||
100 140 71 101 135 67 107 142 79 105 144 79
|
||||
102 143 69 112 155 80 64 62 48 62 61 52
|
||||
60 61 50 65 69 42 76 77 58 85 84 65
|
||||
101 99 103 132 129 183 145 140 212 127 122 175
|
||||
119 115 165 127 122 164 121 111 127 110 95 87
|
||||
108 89 71 104 92 75 106 94 78 127 95 79
|
||||
165 75 60 216 53 46 227 48 43 226 52 42
|
||||
215 56 36 202 61 36 215 57 44 185 59 41
|
||||
181 55 38 215 61 53 231 73 66 179 57 39
|
||||
186 58 41 199 57 45 214 60 52 227 59 55
|
||||
234 58 56 233 56 54 244 72 73 233 90 88
|
||||
205 67 61 218 58 55 223 57 50 228 56 52
|
||||
234 54 56 236 56 62 235 54 61 236 55 59
|
||||
214 63 55 182 59 43 167 59 39 164 59 40
|
||||
150 54 35 192 73 68 252 85 104 210 77 88
|
||||
130 93 79 51 57 34 70 79 41 117 156 95
|
||||
146 165 105 136 155 106 73 84 60 60 72 44
|
||||
103 126 67 106 148 70 97 140 69 107 140 75
|
||||
108 145 80 111 150 81 109 153 77 118 165 86
|
||||
85 77 62 86 77 63 86 78 63 86 80 61
|
||||
92 82 67 96 87 66 98 89 75 109 99 107
|
||||
119 106 124 112 100 109 93 87 91 87 85 82
|
||||
93 86 71 102 90 70 110 95 72 106 100 79
|
||||
136 90 79 173 82 71 174 58 44 203 52 43
|
||||
225 55 47 222 55 46 215 54 42 211 57 41
|
||||
213 58 44 184 60 43 167 53 34 194 57 45
|
||||
215 60 52 211 72 58 212 66 57 216 62 57
|
||||
231 60 60 238 54 56 229 59 56 197 61 50
|
||||
183 57 42 189 59 45 214 60 53 237 54 58
|
||||
232 54 58 230 56 54 229 57 50 230 57 54
|
||||
232 56 56 231 59 61 203 64 56 167 59 44
|
||||
153 59 40 141 56 36 132 54 39 204 89 90
|
||||
188 84 86 158 89 82 128 99 75 96 120 59
|
||||
157 182 113 118 152 89 79 93 59 59 61 46
|
||||
50 51 43 59 67 49 102 127 71 111 151 74
|
||||
106 146 77 109 147 82 106 148 71 113 158 75
|
||||
120 170 85 113 159 87 99 90 75 101 91 75
|
||||
101 91 75 100 91 76 101 91 77 103 95 74
|
||||
104 95 72 103 94 77 103 93 76 102 92 73
|
||||
96 90 71 81 78 61 76 72 55 83 80 62
|
||||
91 90 70 95 95 79 150 97 89 209 74 76
|
||||
211 52 48 183 61 41 205 58 42 218 57 43
|
||||
213 56 42 213 55 42 213 58 43 188 61 47
|
||||
151 53 30 170 63 41 193 55 42 209 57 47
|
||||
233 52 57 232 54 60 237 54 59 239 53 60
|
||||
214 54 52 173 56 38 167 57 38 181 58 41
|
||||
215 62 52 238 57 56 242 54 55 235 56 53
|
||||
229 60 51 224 62 57 218 62 62 201 64 59
|
||||
169 56 43 149 58 40 141 58 40 129 55 34
|
||||
126 58 42 166 82 74 149 84 73 143 92 83
|
||||
150 110 93 142 161 115 83 99 66 39 50 30
|
||||
53 56 49 55 54 47 57 57 48 57 67 48
|
||||
103 130 75 119 156 81 112 153 83 112 152 79
|
||||
111 153 73 120 166 85 119 166 89 96 139 74
|
||||
104 95 80 105 96 81 105 96 81 105 96 81
|
||||
104 95 80 107 98 84 106 98 83 105 96 80
|
||||
105 98 76 105 98 72 104 98 75 96 90 70
|
||||
76 74 54 64 69 52 64 72 56 67 74 62
|
||||
85 77 59 182 88 79 239 68 70 200 58 44
|
||||
195 55 37 210 56 41 209 58 41 209 58 40
|
||||
210 57 41 187 59 47 145 54 30 148 57 31
|
||||
187 56 42 218 59 53 238 64 69 211 62 59
|
||||
187 54 49 183 58 53 162 57 45 157 62 42
|
||||
159 65 43 165 60 39 183 54 41 211 60 53
|
||||
236 61 55 235 63 54 223 68 57 202 65 57
|
||||
178 56 51 152 56 42 140 56 39 132 60 41
|
||||
125 59 40 119 51 34 137 65 51 148 83 71
|
||||
145 90 78 150 89 83 137 89 77 65 77 43
|
||||
39 50 37 55 62 60 75 77 64 61 59 40
|
||||
55 58 47 56 64 45 104 130 75 118 157 80
|
||||
113 155 80 112 157 74 121 164 86 125 168 98
|
||||
98 140 73 96 136 76 105 96 81 105 96 81
|
||||
105 96 81 106 97 82 106 97 81 107 95 90
|
||||
107 95 95 107 97 86 107 97 84 107 97 88
|
||||
108 97 82 107 98 78 90 86 68 68 70 56
|
||||
60 67 53 53 67 49 63 67 41 150 90 70
|
||||
230 93 89 240 74 77 207 59 48 200 57 43
|
||||
206 60 48 210 61 49 212 62 50 206 64 58
|
||||
178 62 51 184 67 51 219 72 65 234 73 69
|
||||
209 69 65 160 61 47 142 70 50 132 67 49
|
||||
121 65 45 133 58 43 137 60 44 141 61 44
|
||||
150 56 42 163 58 46 185 59 48 192 63 49
|
||||
182 60 46 161 54 42 144 55 44 132 60 44
|
||||
127 59 42 123 59 44 115 57 42 118 53 40
|
||||
146 72 59 141 79 66 153 83 78 156 86 87
|
||||
145 111 95 102 118 73 71 86 52 94 107 81
|
||||
75 81 53 58 59 35 56 56 47 56 66 47
|
||||
105 131 76 119 157 80 112 156 78 114 162 80
|
||||
125 169 96 102 142 78 98 138 74 98 136 77
|
||||
105 96 81 105 96 81 104 95 80 108 99 84
|
||||
107 98 83 109 98 87 108 98 85 108 100 79
|
||||
108 100 80 108 98 86 109 98 85 109 99 84
|
||||
104 97 81 86 80 64 69 65 49 56 65 39
|
||||
132 75 64 192 62 64 216 78 79 247 105 109
|
||||
222 78 74 209 67 60 211 69 63 216 72 67
|
||||
222 73 70 228 71 75 224 76 75 231 73 72
|
||||
237 65 67 229 66 65 204 64 61 159 61 48
|
||||
138 65 50 133 60 49 129 58 51 127 59 50
|
||||
126 59 49 122 59 47 122 59 43 123 58 43
|
||||
134 56 44 143 56 44 148 56 40 137 58 42
|
||||
128 60 44 127 56 43 123 51 40 121 54 44
|
||||
112 52 41 118 61 49 133 81 64 137 84 71
|
||||
154 81 77 140 91 83 87 88 64 79 101 61
|
||||
96 118 70 67 87 45 54 64 42 58 60 50
|
||||
55 57 47 56 64 45 95 121 65 120 157 81
|
||||
112 158 81 119 168 89 106 149 83 92 132 71
|
||||
103 142 74 97 133 73 105 96 81 106 97 82
|
||||
108 98 84 106 97 82 106 97 82 107 98 83
|
||||
107 98 83 107 98 82 108 99 83 108 99 84
|
||||
112 98 82 112 97 85 102 95 82 102 97 80
|
||||
95 89 67 65 64 37 114 77 60 156 69 67
|
||||
174 66 67 193 79 78 203 76 76 210 67 66
|
||||
207 64 57 203 69 59 217 68 69 224 64 69
|
||||
225 67 69 226 68 67 227 65 62 226 66 62
|
||||
205 65 60 157 57 47 128 61 47 128 60 51
|
||||
136 56 50 133 59 47 129 59 46 127 58 45
|
||||
124 58 46 124 58 47 123 57 49 123 56 47
|
||||
124 57 46 122 58 46 120 57 47 117 56 46
|
||||
114 54 43 111 52 42 108 50 39 118 64 54
|
||||
136 84 76 148 81 77 147 85 77 121 101 79
|
||||
90 110 74 85 109 68 77 95 58 57 67 40
|
||||
56 57 44 59 61 51 52 59 48 56 57 41
|
||||
86 100 62 116 150 84 120 164 92 114 153 92
|
||||
90 130 67 95 135 73 101 141 76 92 128 71
|
||||
104 97 81 105 98 82 106 100 83 105 98 82
|
||||
105 98 82 106 98 83 107 98 83 107 98 83
|
||||
108 99 84 108 99 84 109 97 84 102 90 80
|
||||
115 112 105 163 160 152 180 175 165 125 123 106
|
||||
55 62 43 51 60 40 60 61 47 63 59 46
|
||||
94 66 53 165 72 69 213 65 69 217 62 60
|
||||
221 68 65 222 68 68 222 68 68 218 70 68
|
||||
213 70 63 212 70 61 216 68 62 176 61 52
|
||||
132 61 44 126 62 47 133 57 46 133 58 43
|
||||
129 58 43 127 58 44 126 58 47 126 58 48
|
||||
123 57 48 121 56 47 119 57 47 118 57 48
|
||||
116 58 46 113 54 45 110 51 43 107 52 41
|
||||
101 49 37 115 61 50 149 82 78 145 89 82
|
||||
127 95 82 95 92 72 69 83 59 50 63 41
|
||||
59 69 48 66 74 54 57 65 48 52 59 46
|
||||
52 57 53 55 56 44 76 87 51 114 149 83
|
||||
123 165 94 96 131 73 90 126 67 97 133 73
|
||||
97 133 75 88 124 71 104 98 82 105 98 82
|
||||
107 99 83 105 98 82 105 98 82 106 98 83
|
||||
107 98 83 108 99 84 108 99 84 107 98 82
|
||||
101 93 83 132 129 124 207 209 209 250 251 253
|
||||
255 255 255 244 221 213 160 145 124 67 74 50
|
||||
53 63 43 58 55 50 42 48 43 90 63 62
|
||||
205 127 127 206 88 85 222 57 58 225 64 68
|
||||
221 66 68 221 65 66 214 67 63 208 69 59
|
||||
221 66 58 191 66 56 141 59 44 127 61 44
|
||||
129 60 43 129 58 43 125 57 45 125 57 47
|
||||
125 58 48 124 58 49 119 58 51 115 56 47
|
||||
112 54 44 111 56 45 110 55 43 110 54 47
|
||||
107 52 44 103 51 42 96 46 36 112 56 47
|
||||
150 85 81 122 92 79 78 79 62 53 64 49
|
||||
47 53 44 51 51 48 46 51 43 52 62 49
|
||||
59 75 56 48 62 46 45 50 47 53 52 43
|
||||
65 77 47 115 149 89 110 152 84 84 117 63
|
||||
90 124 69 95 129 76 95 130 73 87 119 72
|
||||
104 99 83 104 99 83 104 99 83 104 99 83
|
||||
104 99 83 106 99 83 108 99 84 109 100 85
|
||||
109 100 85 108 98 81 108 106 101 188 195 197
|
||||
255 255 255 255 255 255 255 255 254 255 255 239
|
||||
234 243 204 157 167 127 75 79 49 61 54 41
|
||||
79 72 70 158 153 151 242 240 231 250 224 214
|
||||
214 113 113 193 61 58 202 64 60 212 64 64
|
||||
214 62 63 212 66 61 218 64 60 194 67 60
|
||||
146 59 49 129 61 47 126 60 44 127 58 46
|
||||
123 57 47 124 57 48 123 60 51 122 60 52
|
||||
112 59 49 107 56 45 105 55 45 104 56 45
|
||||
104 56 46 107 55 48 105 54 45 97 48 39
|
||||
89 43 31 109 61 52 118 84 78 71 64 51
|
||||
46 57 41 49 60 46 55 58 50 54 56 54
|
||||
50 56 48 45 57 42 54 68 50 57 72 54
|
||||
49 54 44 44 45 34 64 74 49 122 155 109
|
||||
94 134 77 81 111 60 86 115 66 92 121 71
|
||||
98 130 76 81 106 69 103 100 83 103 100 82
|
||||
103 100 82 103 100 82 102 100 82 105 99 82
|
||||
108 99 85 109 100 85 109 100 83 106 97 81
|
||||
100 100 100 167 179 185 239 251 252 250 255 252
|
||||
250 252 238 248 252 237 255 255 237 228 219 192
|
||||
114 110 87 65 74 60 150 151 142 243 230 229
|
||||
255 252 251 255 255 255 255 255 247 222 178 158
|
||||
172 79 65 181 56 48 205 65 60 205 66 61
|
||||
209 69 64 181 63 59 143 60 51 129 61 51
|
||||
126 60 49 126 58 46 124 57 47 124 57 48
|
||||
122 57 50 118 56 48 106 56 47 104 56 47
|
||||
102 55 44 101 55 45 101 55 44 105 54 48
|
||||
105 55 48 102 54 46 104 59 50 110 76 66
|
||||
56 56 51 49 52 44 51 55 45 53 54 43
|
||||
51 55 41 47 57 43 48 57 42 46 56 42
|
||||
47 56 44 56 65 50 59 67 50 48 49 36
|
||||
68 77 58 111 139 106 71 106 61 76 107 60
|
||||
76 105 59 87 117 70 98 129 78 67 86 59
|
||||
104 101 86 104 101 87 104 101 87 104 101 87
|
||||
104 101 87 105 101 86 107 100 90 110 101 87
|
||||
104 102 81 110 108 104 160 167 175 226 231 235
|
||||
255 255 255 255 255 252 248 251 241 248 250 243
|
||||
255 255 239 218 217 184 112 115 87 111 123 106
|
||||
200 205 201 255 254 252 255 255 253 253 255 254
|
||||
255 255 255 255 255 255 240 223 216 187 106 94
|
||||
176 56 43 196 64 54 199 72 57 168 69 54
|
||||
135 66 55 128 63 54 130 59 50 125 57 50
|
||||
120 56 47 117 55 46 115 55 46 111 53 43
|
||||
106 55 48 104 55 48 102 53 47 103 54 47
|
||||
105 55 48 108 55 49 108 60 47 103 70 52
|
||||
130 113 95 110 107 91 41 50 40 49 55 46
|
||||
48 55 45 49 54 42 48 53 44 47 51 45
|
||||
47 51 45 47 52 46 46 49 44 46 53 46
|
||||
50 63 52 51 64 51 64 77 58 73 88 64
|
||||
66 85 56 77 103 64 71 98 57 88 114 74
|
||||
93 120 84 52 68 53 104 101 86 104 101 86
|
||||
104 101 86 104 101 86 104 101 86 103 101 85
|
||||
107 100 91 110 100 88 103 104 80 125 128 126
|
||||
217 226 232 255 255 255 255 255 255 253 252 247
|
||||
229 232 222 227 234 215 240 241 217 211 210 183
|
||||
180 176 159 205 204 199 242 242 241 255 255 255
|
||||
255 255 253 254 254 252 254 254 252 255 253 255
|
||||
255 255 255 251 255 247 199 163 142 163 69 52
|
||||
189 57 46 182 60 57 152 58 59 127 64 61
|
||||
112 66 60 113 64 54 113 63 53 111 63 52
|
||||
106 60 50 104 58 49 113 54 50 109 53 49
|
||||
106 55 47 103 57 49 103 62 52 102 70 57
|
||||
99 74 53 95 77 53 127 127 105 81 89 70
|
||||
42 49 40 48 55 44 49 55 45 48 54 44
|
||||
47 51 44 45 50 45 46 51 45 45 50 44
|
||||
44 48 43 44 51 44 41 52 45 45 56 45
|
||||
50 62 45 50 62 42 54 67 46 68 86 59
|
||||
72 93 61 94 113 82 90 108 83 44 56 46
|
||||
104 101 86 104 101 86 104 101 86 105 102 87
|
||||
105 102 87 106 101 86 108 99 92 110 103 90
|
||||
104 105 81 108 117 112 195 205 213 254 255 255
|
||||
255 255 254 250 251 242 233 237 220 231 239 210
|
||||
234 232 206 221 212 199 239 224 225 255 250 255
|
||||
255 255 255 255 255 253 254 254 252 254 254 252
|
||||
254 254 252 255 253 250 249 255 255 250 255 255
|
||||
255 255 255 232 212 188 180 107 83 157 63 46
|
||||
145 54 42 127 56 44 111 65 51 114 61 55
|
||||
115 63 57 115 65 59 111 63 56 110 61 54
|
||||
113 57 52 108 58 51 100 61 50 94 62 50
|
||||
80 59 43 85 80 57 93 88 61 93 93 63
|
||||
110 118 92 50 64 43 50 55 47 50 56 46
|
||||
51 57 47 50 56 45 47 53 44 46 51 45
|
||||
46 51 45 44 49 43 42 47 41 43 48 43
|
||||
43 51 43 42 52 44 45 53 44 55 64 53
|
||||
57 67 52 51 62 44 62 74 52 92 104 84
|
||||
81 93 79 43 52 45 103 100 85 104 101 86
|
||||
105 102 87 105 102 87 105 102 87 106 101 86
|
||||
110 99 92 108 104 90 102 108 83 104 119 111
|
||||
186 198 205 251 254 255 255 255 253 255 255 242
|
||||
240 247 225 221 227 195 218 215 193 233 222 222
|
||||
255 245 250 255 253 255 255 255 252 254 254 252
|
||||
254 254 252 254 254 252 254 254 252 250 255 253
|
||||
255 253 255 255 248 255 255 254 254 255 255 255
|
||||
255 254 235 218 195 172 160 117 93 121 72 49
|
||||
101 54 34 101 51 41 106 57 48 108 63 52
|
||||
105 62 52 104 62 50 99 65 55 95 68 53
|
||||
89 71 53 101 93 71 69 70 47 57 67 39
|
||||
69 73 43 112 112 82 92 96 71 50 57 39
|
||||
55 61 53 55 61 51 55 62 52 56 62 51
|
||||
56 60 53 55 59 54 54 59 53 50 55 49
|
||||
46 51 45 44 49 43 40 46 40 42 46 42
|
||||
44 49 44 47 50 47 61 68 61 61 74 56
|
||||
49 63 40 66 80 60 69 80 68 47 57 48
|
||||
100 100 83 103 100 85 104 103 87 105 101 87
|
||||
104 102 87 107 101 86 110 100 92 108 104 90
|
||||
100 107 82 100 119 111 195 208 217 254 255 255
|
||||
255 255 252 255 255 242 242 247 224 209 210 182
|
||||
198 191 179 240 230 238 255 255 255 254 255 252
|
||||
254 255 250 254 254 252 254 254 252 254 254 252
|
||||
254 254 252 254 253 255 251 255 252 249 255 245
|
||||
253 255 250 255 254 255 255 255 255 255 255 255
|
||||
255 255 254 248 244 228 229 216 200 209 189 167
|
||||
104 83 59 88 68 44 93 75 50 92 76 52
|
||||
86 79 58 81 78 55 77 79 56 94 103 75
|
||||
64 76 48 61 69 42 71 74 43 105 103 74
|
||||
96 89 68 70 70 53 58 63 53 58 62 53
|
||||
56 62 52 57 63 53 57 64 56 59 65 59
|
||||
58 62 57 58 64 58 57 61 56 55 59 54
|
||||
48 54 50 44 49 44 43 47 46 41 45 46
|
||||
41 51 41 54 74 50 57 76 51 56 73 49
|
||||
59 75 56 47 59 46 92 103 79 95 105 82
|
||||
103 107 87 105 104 88 108 102 88 108 103 89
|
||||
107 102 91 104 103 89 101 108 89 124 138 134
|
||||
200 210 217 245 250 250 247 250 240 238 238 220
|
||||
221 218 198 201 192 174 201 190 182 233 224 230
|
||||
254 250 255 253 254 254 253 254 254 254 254 254
|
||||
255 254 252 255 253 251 255 253 249 255 252 252
|
||||
255 253 253 254 254 252 252 248 244 246 236 232
|
||||
254 250 251 254 255 253 253 255 255 255 255 252
|
||||
255 255 238 233 230 205 109 103 75 82 75 45
|
||||
85 79 50 83 79 51 80 78 52 76 79 54
|
||||
72 79 53 69 78 46 76 83 48 93 101 64
|
||||
97 101 70 86 86 61 87 84 60 85 82 57
|
||||
77 73 54 67 66 53 60 63 53 56 65 53
|
||||
56 67 53 57 65 55 57 65 54 58 66 55
|
||||
59 67 56 60 69 60 59 69 58 57 64 53
|
||||
53 61 54 54 68 47 71 96 53 71 98 60
|
||||
58 77 56 64 82 58 72 92 65 52 66 49
|
||||
|
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input_p4.pbm
Normal file
79
ImageMagick-6.8.3-1/PerlMagick/t/input_p5.pgm
Normal file
|
@ -0,0 +1,79 @@
|
|||
P5
|
||||
70 46
|
||||
255
|
||||
",5CKOK<-*(% !+0!
|
||||
1=//O1
|
||||
%0AIRO:*)($ .6!
|
||||
)=,:'
|
||||
|
||||
$3ANH.%&%!"25$
|
||||
F4
|
||||
|
||||
|
||||
%0BA&!"!$0:A !]G-&F?
|
||||
!*0""0LY2%VXƒ~dkN
|
||||
|
||||
|
||||
!%<XYA)QUztXX;
|
||||
|
||||
|
||||
|
||||
|
||||
(?V[G92
|
||||
>EKMMK6
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
32!0;JXPGI<&/9@>D?2
|
||||
|
||||
|
||||
|
||||
$+&%'%'($0D: .MQRSQNNMGE9#
334:ERD,
|
||||
|
||||
|
||||
N4 1'+.$-9IA<F:3+'NOCQQRSTWWYZa?/URVuš p,
|
||||
|
||||
)'"&%!&(*05CMI?:2:IUA(4JSUVWVXW_aC.˜ÀºÒíìס@3
|
||||
=6
|
||||
|
||||
($"+3,')209=HG8;99@A4'(=PRWW\]\^P`'¶ÿòöÿý÷Ö„y
|
||||
!igN+
!&)(.9869;ADIME767?G.),4=@LXTZ\[]Yb@€ÿýûõ÷è¾ÍÕ
|
||||
Z„<5A><E2809E>p>$
|
||||
5L<9*%)0:A<DD=DMMM@5479H:-.4@4FLS]Z^_`\;:Ïýüôöã¤ãñ
|
||||
Jy<4A>ƒxgP7$!<PC9E7.3:<<<>:64>SL<?H@=IA80.1.7<Pe[]b[e4›üüûüþÍëó
GnqxtzxnHBJC6;I@76,1=??70159BDDK@3AAE20-+*/Mc_\`fqG™ÿþüðýúîò<X\g^OEHFCFC2>F<20,6B?A7-3F3058624>GQB2+('(@]TZed[7!Ëÿÿ߸ÏîÏÑ 4@I:, ?SHLA,574..09BLQNJNJ75CE:.3AA95>-$%#1_ghj]TSD”´…gg}¡Â¡)BFB-4FRH0$5?9,13;H@EIKNHIFQI?I;?910D467.)Wtol[S816+5H]bZx}5W^SE:L?)#8GJA/5BGINJHOW`I8+7I>4/%&<?JNC-HxofWN,;GRTY^Ss‡ ARfYNF>4%+7==K:9GMMOIEPdQ5!'0@42)/C@ONH27}q`W;<PRLKOUYgX"#4QLFTYK>3%243>@C>HWPA>=A>=3?@9N@<@JMF<JMJ40<34>jYW#=HEDHLMZT18<6DZs{=7ND:,1E1;@AAGISKNQ<FDQjeL:@A?OSC=HOK8*x_WQ;F=@EHJQH+3:,@s¹×Är;NWE<.3B5FC>C<7QWd_LJS]W?C>:BED:@INK<,l^W6,<8<AB<168)6`“®§=%2\dO?158FF?A4,58XQ?PHCMHGA@DFE<?GKJ<;cVW
147<6/(!#11$.Nad_ZL'6brV3-4:6==223/C=4DLOOPI@AEGA<=BHG:R\V9
)-274/-,+ ")#>NMHFH@#?Ukr2-2954:3234838NQNOPI=@FI@9;;:9<^VWe8,9<64..2
|
||||
!@OGEEJH31S`A33:82/A6325;=HNFDLI@=BIMA65510KXV( k‘9,>;22118,W[CENG5!#KH<<8?2.2?0145:DJEKRH@?AEHH>/--(*\U;EˆW*:30675@!@P:38- $):@@:5;,)<H),2;BFEQP8=?BEGFG<+%#4\?$ CRH+9248<=I#*$ $.'3@>:8:,#0<=<=EHC2+.;GDCCDEE6%@6+%&e@
,<8:9BMC,=8,6<99:.'/8DDGH:&$*<HJFCA>5%,&'2O
|
||||
|
||||
.B?>>JJ2 5L308888-,=K:,+""#$*9HHB6)%')$
|
||||
.C@AIN20
(PO7379:8*.AJ;##,1+!!"'*1'!
|
||||
|
||||
/C@EN510! ! !! !!
1B`E:<@CGFIJE7" "'&&
|
||||
'CBL:-5. !!!!$*7:;88?BDDDD8!"%&$!
|
||||
|
||||
|
||||
>I@+/4* ! !! )Zn1
|
||||
(<=ABB@==>)&'$
|
||||
|
||||
|
||||
<K-)..' !! 8¢öÿÅK
|
||||
T@?CAA=:@1'!
|
||||
==#(,,% !!! %ˆÿÿÿûÖZ
|
||||
SÝÌQ16;<<>3
|
||||
|
||||
|
||||
D."'- !!! oïûóòû´'MÒúÿý„-*88;,
|
||||
7$,!!!!!!!"!&aÊÿþòñû«).˜ýþýÿÿÅ?(36(-% #'!!!!! !"!6¾ÿÿøÊÉÚ nšâÿþüüüÿúj&., 4
|
||||
|
||||
$! !!!!!!!#"+˜þÿóÒÑÉªÇøÿþüüüûûüÿ¯;"
*
|
||||
!!!!!"##+Œûþü享Áñüþüüüüûüöýÿù“9'
|
||||
|
||||
"!!!"#"*œþþü埆Òÿþýüüüüüüøüþÿÿÿ泈
!
|
||||
#""#""#<¡ñïÖ°ˆ‡ÅøüüýýûûúüüñÛ÷þþþûÆ"
|
4
ImageMagick-6.8.3-1/PerlMagick/t/input_p6.ppm
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input_p7.p7
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/input_rgb_lsb_08bit.mat
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jbig/input.jbig
Normal file
After Width: | Height: | Size: 281 B |
17
ImageMagick-6.8.3-1/PerlMagick/t/jbig/read.t
Normal file
|
@ -0,0 +1,17 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Test read image method on JBIG image
|
||||
#
|
||||
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
#
|
||||
BEGIN { $| = 1; $test=1; print "1..1\n"; }
|
||||
END {print "not ok $test\n" unless $loaded;}
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't/jbig' || die 'Cd failed';
|
||||
|
||||
testRead( 'input.jbig',
|
||||
'f7047e83432fbef872f3034a19efb95aa3b241d0be228ae0ccdc7814a9e27811');
|
22
ImageMagick-6.8.3-1/PerlMagick/t/jbig/write.t
Normal file
|
@ -0,0 +1,22 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Test write image method on JBIG image
|
||||
#
|
||||
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
#
|
||||
BEGIN { $| = 1; $test=1; print "1..1\n"; }
|
||||
END {print "not \n" unless $loaded;}
|
||||
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't/jbig' || die 'Cd failed';
|
||||
|
||||
testReadWrite( 'input.jbig',
|
||||
'output.jbig',
|
||||
'',
|
||||
'f7047e83432fbef872f3034a19efb95aa3b241d0be228ae0ccdc7814a9e27811' );
|
||||
|
||||
$test=0; # Keep perl from complaining
|
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jng/input_gray.jng
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jng/input_gray_idat.jng
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jng/input_gray_jdaa.jng
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jng/input_gray_prog.jng
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jng/input_gray_prog_idat.jng
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jng/input_gray_prog_jdaa.jng
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jng/input_idat.jng
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jng/input_jdaa.jng
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jng/input_prog.jng
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jng/input_prog_idat.jng
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jng/input_prog_jdaa.jng
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jng/input_rose.jng
Normal file
69
ImageMagick-6.8.3-1/PerlMagick/t/jng/read.t
Normal file
|
@ -0,0 +1,69 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Test read image method on non-interlaced JPEG.
|
||||
#
|
||||
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
#
|
||||
BEGIN { $| = 1; $test=1; print "1..11\n"; }
|
||||
END {print "not ok $test\n" unless $loaded;}
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't/jng' || die 'Cd failed';
|
||||
|
||||
#
|
||||
# 1) Gray
|
||||
#
|
||||
testReadCompare('input_gray.jng', '../reference/jng/read_gray.miff', q//, 0.002, 0.22);
|
||||
#
|
||||
# 2) Gray with IDAT encoding
|
||||
#
|
||||
++$test;
|
||||
testReadCompare('input_gray_idat.jng', '../reference/jng/read_gray_idat.miff', q//, 0.002, 0.22);
|
||||
#
|
||||
# 3) Gray with JDAA encoding
|
||||
#
|
||||
++$test;
|
||||
testReadCompare('input_gray_jdaa.jng', '../reference/jng/read_gray_jdaa.miff', q//, 0.002, 0.22);
|
||||
#
|
||||
# 4) Gray Progressive
|
||||
#
|
||||
++$test;
|
||||
testReadCompare('input_gray_prog.jng', '../reference/jng/read_gray_prog.miff', q//, 0.002, 0.22);
|
||||
#
|
||||
# 5) Gray progressive with IDAT encoding
|
||||
#
|
||||
++$test;
|
||||
testReadCompare('input_gray_prog_idat.jng', '../reference/jng/read_gray_prog_idat.miff', q//, 0.002, 0.22);
|
||||
#
|
||||
# 6) Gray progressive with JDAA encoding
|
||||
#
|
||||
++$test;
|
||||
testReadCompare('input_gray_prog_jdaa.jng', '../reference/jng/read_gray_prog_jdaa.miff', q//, 0.002, 0.22);
|
||||
#
|
||||
# 7) Color with JDAA encoding
|
||||
#
|
||||
++$test;
|
||||
testReadCompare('input_idat.jng', '../reference/jng/read_idat.miff', q//, 0.002, 0.22);
|
||||
#
|
||||
# 8) Color with JDAA encoding
|
||||
#
|
||||
++$test;
|
||||
testReadCompare('input_jdaa.jng', '../reference/jng/read_jdaa.miff', q//, 0.002, 0.22);
|
||||
#
|
||||
# 9) Color progressive
|
||||
#
|
||||
++$test;
|
||||
testReadCompare('input_prog.jng', '../reference/jng/read_prog.miff', q//, 0.002, 0.22);#
|
||||
#
|
||||
# 10) Color progressive with IDAT encoding
|
||||
#
|
||||
++$test;
|
||||
testReadCompare('input_prog_idat.jng', '../reference/jng/read_prog_idat.miff', q//, 0.002, 0.22);
|
||||
#
|
||||
# 11) Color progressive with JDAA encoding
|
||||
#
|
||||
++$test;
|
||||
testReadCompare('input_prog_jdaa.jng', '../reference/jng/read_prog_jdaa.miff', q//, 0.002, 0.22);
|
38
ImageMagick-6.8.3-1/PerlMagick/t/jng/write.t
Normal file
|
@ -0,0 +1,38 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Test reading JPEG images
|
||||
#
|
||||
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
#
|
||||
BEGIN { $| = 1; $test=1; print "1..11\n"; }
|
||||
END {print "not ok $test\n" unless $loaded;}
|
||||
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't/jng' || die 'Cd failed';
|
||||
|
||||
testReadWriteCompare( 'input_gray_idat.jng', 'gray_idat_tmp.jng', '../reference/jng/write_gray_idat.miff', q//, q//, 0.07, 1.0);
|
||||
++$test;
|
||||
testReadWriteCompare( 'input_gray_jdaa.jng', 'gray_jdaa_tmp.jng', '../reference/jng/write_gray_jdaa.miff', q//, q//, 0.07, 1.0);
|
||||
++$test;
|
||||
testReadWriteCompare( 'input_gray.jng', 'gray_tmp.jng', '../reference/jng/write_gray.miff', q//, q//, 0.07, 1.0);
|
||||
++$test;
|
||||
testReadWriteCompare( 'input_gray_prog_idat.jng', 'gray_prog_idat_tmp.jng', '../reference/jng/write_gray_prog_idat.miff', q//, q//, 0.07, 1.0);
|
||||
++$test;
|
||||
testReadWriteCompare( 'input_gray_prog_jdaa.jng', 'gray_prog_jdaa_tmp.jng', '../reference/jng/write_gray_prog_jdaa.miff', q//, q//, 0.07, 1.0);
|
||||
++$test;
|
||||
testReadWriteCompare( 'input_gray_prog.jng', 'gray_prog_tmp.jng', '../reference/jng/write_gray_prog.miff', q//, q//, 0.07, 1.0);
|
||||
++$test;
|
||||
testReadWriteCompare( 'input_idat.jng', 'idat_tmp.jng', '../reference/jng/write_idat.miff', q//, q//, 0.07, 1.0);
|
||||
++$test;
|
||||
testReadWriteCompare( 'input_jdaa.jng', 'jdaa_tmp.jng', '../reference/jng/write_jdaa.miff', q//, q//, 0.07, 1.0);
|
||||
++$test;
|
||||
testReadWriteCompare( 'input_prog_idat.jng', 'prog_idat_tmp.jng', '../reference/jng/write_prog_idat.miff', q//, q//, 0.07, 1.0);
|
||||
++$test;
|
||||
testReadWriteCompare( 'input_prog_jdaa.jng', 'prog_jdaa_tmp.jng', '../reference/jng/write_prog_jdaa.miff', q//, q//, 0.07, 1.0);
|
||||
++$test;
|
||||
testReadWriteCompare( 'input_prog.jng', 'prog_tmp.jng', '../reference/jng/write_prog.miff', q//, q//, 0.07, 1.0);
|
||||
|
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jp2/input.jp2
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jp2/input.jpc
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jp2/input.pgx
Normal file
34
ImageMagick-6.8.3-1/PerlMagick/t/jp2/read.t
Normal file
|
@ -0,0 +1,34 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Test read image method on non-interlaced JPEG.
|
||||
#
|
||||
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
#
|
||||
BEGIN { $| = 1; $test=1; print "1..3\n"; }
|
||||
END {print "not ok $test\n" unless $loaded;}
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't/jp2' || die 'Cd failed';
|
||||
|
||||
#
|
||||
# 1) JPEG-2000 JP2 File Format Syntax (ISO/IEC 15444-1)
|
||||
#
|
||||
print( "JPEG-2000 JP2 File Format Syntax ...\n" );
|
||||
testReadCompare('input.jp2', '../reference/jp2/read_jp2.miff', q//, 0.0001, 0.005);
|
||||
|
||||
#
|
||||
# 2) JPEG-2000 Code Stream Syntax (ISO/IEC 15444-1)
|
||||
#
|
||||
++$test;
|
||||
print( " ...\n" );
|
||||
testReadCompare('input.jpc', '../reference/jp2/read_jpc.miff', q//, 0.0001, 0.005);
|
||||
|
||||
#
|
||||
# 3) JPEG-2000 VM Format
|
||||
#
|
||||
++$test;
|
||||
print( " ...\n" );
|
||||
testReadCompare('input.pgx', '../reference/jp2/read_pgx.miff', q//, 0.06, 0.3);
|
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jpeg/input.jpg
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
ImageMagick-6.8.3-1/PerlMagick/t/jpeg/input_plane.jpg
Normal file
After Width: | Height: | Size: 1.8 KiB |
29
ImageMagick-6.8.3-1/PerlMagick/t/jpeg/read.t
Normal file
|
@ -0,0 +1,29 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Test read image method on non-interlaced JPEG.
|
||||
#
|
||||
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
#
|
||||
BEGIN { $| = 1; $test=1; print "1..2\n"; }
|
||||
END {print "not ok $test\n" unless $loaded;}
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't/jpeg' || die 'Cd failed';
|
||||
|
||||
#
|
||||
# 1) Test non-interlaced image read
|
||||
#
|
||||
print( "Non-interlaced JPEG ...\n" );
|
||||
testReadCompare('input.jpg', '../reference/jpeg/read_non_interlaced.miff', q//, 0.002, 0.22);
|
||||
|
||||
#
|
||||
# 2) Test plane-interlaced image read
|
||||
#
|
||||
++$test;
|
||||
print( "Plane-interlaced JPEG ...\n" );
|
||||
testReadCompare('input_plane.jpg', '../reference/jpeg/read_plane_interlaced.miff', q//, 0.002, 0.22);
|
||||
|
||||
|
33
ImageMagick-6.8.3-1/PerlMagick/t/jpeg/write.t
Normal file
|
@ -0,0 +1,33 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Test reading JPEG images
|
||||
#
|
||||
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
||||
#
|
||||
BEGIN { $| = 1; $test=1; print "1..2\n"; }
|
||||
END {print "not ok $test\n" unless $loaded;}
|
||||
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't/jpeg' || die 'Cd failed';
|
||||
|
||||
#
|
||||
# 1) Test with non-interlaced image
|
||||
#
|
||||
print( "Non-interlaced JPEG ...\n" );
|
||||
testReadWriteCompare( 'input.jpg', 'output_tmp.jpg',
|
||||
'../reference/jpeg/write_non_interlaced.miff',
|
||||
q//, q//, 0.02, 0.27);
|
||||
|
||||
#
|
||||
# 2) Test with plane-interlaced image
|
||||
#
|
||||
++$test;
|
||||
print( "Plane-interlaced JPEG ...\n" );
|
||||
testReadWriteCompare( 'input.jpg', 'output_plane_tmp.jpg',
|
||||
'../reference/jpeg/write_plane_interlaced.miff',
|
||||
q//, q//, 0.02, 0.27);
|
||||
|
235
ImageMagick-6.8.3-1/PerlMagick/t/montage.t
Normal file
|
@ -0,0 +1,235 @@
|
|||
#!/usr/bin/perl
|
||||
# Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization
|
||||
# dedicated to making software imaging solutions freely available.
|
||||
#
|
||||
# You may not use this file except in compliance with the License. You may
|
||||
# obtain a copy of the License at
|
||||
#
|
||||
# http://www.imagemagick.org/script/license.php
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
# Test montage method.
|
||||
#
|
||||
BEGIN { $| = 1; $test=1, print "1..19\n"; }
|
||||
END {print "not ok 1\n" unless $loaded;}
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't' || die 'Cd failed';
|
||||
|
||||
#
|
||||
# 1) Test montage defaults (except no label that requires an exact font)
|
||||
#
|
||||
testMontage( q//,
|
||||
q/background=>'#696e7e'/,
|
||||
'977b812cb06e16d0ee7da6c80a9470cb85c2d33ba33f5919f26b05058f0eb177',
|
||||
'fea8915dc67163d86e93a6e611c900185f82bdc5fc67c7a3e53a4b76639aaa56',
|
||||
'8de04216e6f60ad3bf63d5a2c54386cb824579e1c4a677af726e0306e0c7fb09');
|
||||
|
||||
#
|
||||
# 2) Test Center gravity
|
||||
# Image should be centered in frame
|
||||
#
|
||||
++$test;
|
||||
testMontage( q//,
|
||||
q/background=>'#696e7e',, geometry=>'90x80+5+5>', gravity=>'Center'/,
|
||||
'9a3f16a11fa4173f43642e7759070b32ce66a21c72312a7c99ed5dab711dc377',
|
||||
'633267a42b30c1a5709d8929ef9ad24e6612f28e10299315a0ff386ccba7ec9a',
|
||||
'2a381bc2cc7dc751c95df0f6a88c5f04232e82d06094b65b3909f488e4347f93');
|
||||
|
||||
#
|
||||
# 3) Test NorthWest gravity
|
||||
# Image should be at top-left in frame
|
||||
#
|
||||
++$test;
|
||||
testMontage( q//,
|
||||
q/background=>'#696e7e',, geometry=>'90x80+5+5>', gravity=>'NorthWest'/,
|
||||
'1ace55dbec2814d4d12e911f6ab21e0eac769cf12fbdcf516376f356222b74e1',
|
||||
'9d4854b04b3072c4f371a55289ed0583c5fab1a52758e514008462bfb890be41',
|
||||
'f3be8f6f4ecabc14d6da8a3d8b6a2e369ad005d045f381df6f24ca2410406380');
|
||||
|
||||
#
|
||||
# 4) Test North gravity
|
||||
# Image should be at top-center of frame
|
||||
#
|
||||
++$test;
|
||||
testMontage( q//,
|
||||
q/background=>'#696e7e',, geometry=>'90x80+5+5>', gravity=>'North'/,
|
||||
'02840dc5ac270f2e26422b8c90c5e5c3af81fd6e6739e9554977115e152a6872',
|
||||
'67ee49456bfc3500aac4a2425b7b45c9cd32d8948232a97fabe62713ddd7f859',
|
||||
'abd7f530c44e953ac799a04846a3eef613d0ab7b08aa92bb6cabe8abf275d5b6');
|
||||
|
||||
#
|
||||
# 5) Test NorthEast gravity
|
||||
# Image should be at top-right of frame
|
||||
#
|
||||
++$test;
|
||||
testMontage( q//,
|
||||
q/background=>'#696e7e',, geometry=>'90x80+5+5>', gravity=>'NorthEast'/,
|
||||
'c5a10e80cb4f3b1c866d03e8cad4154f1139758ec86ffeef4fe2a802ac118ae2',
|
||||
'66b8ac0676dbf6c48703cb16422e75174ee676003cacfd58de546a697075b469',
|
||||
'bb35ddfaab468d869f2a3bafb16b3751015f2bb94e87438c48c7b294831d2bb8');
|
||||
|
||||
#
|
||||
# 6) Test West gravity
|
||||
# Image should be at left-center of frame
|
||||
#
|
||||
++$test;
|
||||
testMontage( q//,
|
||||
q/background=>'#696e7e',, geometry=>'90x80+5+5>', gravity=>'West'/,
|
||||
'60f394bc620fba50b97dfe55c6026eed616a26ceee7a97fa66485b1853182ff8',
|
||||
'46eed993d02f46dc553478fcdda6c0632b4d1161d478d5a9409b2925a8624c09',
|
||||
'09bb863d97be728ee75411ff87f1d09a5ef272b03fd23edca07b692239ce9346');
|
||||
|
||||
#
|
||||
# 7) Test East gravity
|
||||
# Image should be at right-center of frame.
|
||||
#
|
||||
++$test;
|
||||
testMontage( q//,
|
||||
q/background=>'#696e7e',, geometry=>'90x80+5+5>', gravity=>'East'/,
|
||||
'48e3b6f793ef83ff702a4a164a6d91f1e3711ff9d7eee9f2eb7f8ce704783355',
|
||||
'2285ea36a814317b190c43012f509a70a779cac61afc0dcd0a54f089cbd6b284',
|
||||
'932cf84bf09b180ed7e01976dabf6ba7088fc374c539991ea42600ae40cedcbd');
|
||||
|
||||
#
|
||||
# 8) Test SouthWest gravity
|
||||
# Image should be at bottom-left of frame
|
||||
#
|
||||
++$test;
|
||||
testMontage( q//,
|
||||
q/background=>'#696e7e',, geometry=>'90x80+5+5>', gravity=>'SouthWest'/,
|
||||
'a7bdd145d3a98e1ba42ccff175ef3ff91c04ccff47cab1b0c8ae8ad21315f680',
|
||||
'6e4b779635b9dbd54490aa6a71aa45c4414c51554e449ccd88570ced42975b1b',
|
||||
'ef5b118bfa9dfbed332c1cf349b8cc792280f535a1dcba053e878657cb060198');
|
||||
|
||||
#
|
||||
# 9) Test South gravity
|
||||
# Image should be at bottom of frame
|
||||
#
|
||||
++$test;
|
||||
testMontage( q//,
|
||||
q/background=>'#696e7e',, geometry=>'90x80+5+5>', gravity=>'South'/,
|
||||
'35c31352e889dc7912ddb0ae23af45c3776f36bc77a874b751d2594415cee1e6',
|
||||
'b72b1f24b49d9a3bb0507f3e5d5588b0c11cde499fab27d02df41d36dd87f099',
|
||||
'3fd57e40caef146868326f177db65265e8970c88ce20ba099152a1c5e8027e1f');
|
||||
|
||||
#
|
||||
# 10) Test SouthEast gravity
|
||||
# Image should be at bottom-right of frame.
|
||||
#
|
||||
++$test;
|
||||
testMontage( q//,
|
||||
q/background=>'#696e7e',, geometry=>'90x80+5+5>', gravity=>'SouthEast'/,
|
||||
'd46836aea9de6ca6441a856b103edbe1bee6ceeeab189ac8bdf61bac35556774',
|
||||
'192a8ee4da1c5d62d14ab7837378d06fec13c37cb097d7ee00f97534f86d8304',
|
||||
'c94a37024d7f8ff664c5aae0977ed6ff5d3aa92f46425b09b179c2ab32494e0c');
|
||||
|
||||
#
|
||||
# 11) Test Framed Montage
|
||||
#
|
||||
# Image border color 'bordercolor' controls frame background color
|
||||
# Image matte color 'mattecolor' controls frame color
|
||||
# Image pen color 'pen' controls label text foreground color
|
||||
++$test;
|
||||
testMontage( q/bordercolor=>'blue', mattecolor=>'red'/,
|
||||
q/background=>'#696e7e',, tile=>'4x4', geometry=>'90x80+3+3>', frame=>'8x10',
|
||||
borderwidth=>'0', gravity=>'Center', background=>'gray'/,
|
||||
'5110ae8eb21ded2d8e6b6d3f5cc80317a6c58304f84731810a318bd76473427a',
|
||||
'ed4b38de6a8bc7408585a5b38efb677d6877244a80cff9ca2d95dbacdaf8df3f',
|
||||
'1419b60478f8f0d6f4da5fb87b0df3f16313a1e89a3192d9feeda2cdf2ac9860');
|
||||
|
||||
#
|
||||
# 12) Test Framed Montage with drop-shadows
|
||||
#
|
||||
++$test;
|
||||
testMontage( q/bordercolor=>'blue', mattecolor=>'red'/,
|
||||
q/background=>'#696e7e',, tile=>'4x4', geometry=>'90x80+6+6>', frame=>'8x10',
|
||||
borderwidth=>'0', gravity=>'Center', shadow=>'True',background=>'gray'/,
|
||||
'61645a8c80a7220a4260133a2b1ae720bf2755f2ed880a3fef0e9453641f5b79',
|
||||
'9ec1ec229079b7526bb89876a0009994dfdb96186c9e1892100c7ca52b21c090',
|
||||
'079a08058fa670d60be858828a42732a2a6e1a4c34f2d179661b0fb71f719219');
|
||||
|
||||
#
|
||||
# 13) Test Framed Montage with drop-shadows and background texture
|
||||
#
|
||||
++$test;
|
||||
testMontage( q/bordercolor=>'blue', mattecolor=>'red'/,
|
||||
q/background=>'#696e7e',, tile=>'4x4', geometry=>'90x80+6+6>', frame=>'8x10',
|
||||
borderwidth=>'0', gravity=>'Center', shadow=>'True', texture=>'granite:'/,
|
||||
'4655b59218afbd58d24a9ecf162a42868b3de40ecc8e9f9671dccf8b17e1aa33',
|
||||
'a995c2de45028cf28077e281ca5dd5114a98df62fc578a142c8dcd9be5be3bdd',
|
||||
'877a7277907a804286062823461c37690edaaa5d0bc7b813989bcaa0d4ebeaaf');
|
||||
|
||||
#
|
||||
# 14) Test Un-bordered, Un-framed Montage
|
||||
#
|
||||
++$test;
|
||||
testMontage( q//,
|
||||
q/background=>'#696e7e',, tile=>'4x4', geometry=>'90x80+6+6>', mode=>'Unframe',
|
||||
borderwidth=>'0', gravity=>'Center', background=>'gray'/,
|
||||
'5b5b6e7667055dee87a282cac637bceeec605644d8063972f79a01b2c07f9872',
|
||||
'd313d29183c31fb1aa91b0fb44ef04c8cd7ad6f7648a553fe0ec3c6ba7872fb4',
|
||||
'438478e6380519b065e4e24e33bab0e6dd6c4ab5a8c6449e22537fd55269babb');
|
||||
|
||||
#
|
||||
# 15) Test Bordered, Un-framed Montage (mode=>'Unframe')
|
||||
#
|
||||
++$test;
|
||||
testMontage( q/bordercolor=>'red'/,
|
||||
q/background=>'#696e7e',, tile=>'4x4', geometry=>'90x80+6+6>', mode=>'Unframe',
|
||||
borderwidth=>'5', gravity=>'Center', background=>'gray'/,
|
||||
'fadebb098990a6230d30c55f45c4f1a31effc70055d4eb66c8f46c913257e1fb',
|
||||
'9468d6ff4312772656e980874be56ae69cf97946e78461de1f67e96c6c76675c',
|
||||
'535b6d2dd565ee5d01c3500569e60112812f5cd4d88525d528d35a5d02bbe681');
|
||||
|
||||
#
|
||||
# 16) Test Bordered, Un-framed Montage (mode=>'UnFrame')
|
||||
#
|
||||
++$test;
|
||||
testMontage( q/bordercolor=>'red'/,
|
||||
q/tile=>'4x4', geometry=>'90x80+6+6>', mode=>'UnFrame',
|
||||
borderwidth=>'5', gravity=>'Center', background=>'gray'/,
|
||||
'fadebb098990a6230d30c55f45c4f1a31effc70055d4eb66c8f46c913257e1fb',
|
||||
'9468d6ff4312772656e980874be56ae69cf97946e78461de1f67e96c6c76675c',
|
||||
'535b6d2dd565ee5d01c3500569e60112812f5cd4d88525d528d35a5d02bbe681');
|
||||
|
||||
#
|
||||
# 17) Test Un-bordered, Un-framed Montage with 16x1 tile
|
||||
#
|
||||
++$test;
|
||||
testMontage( q//,
|
||||
q/background=>'#696e7e',, tile=>'16x1', geometry=>'90x80+0+0>', mode=>'Unframe',
|
||||
borderwidth=>'0', gravity=>'Center', background=>'gray'/,
|
||||
'bead47d8f45327614e1a91f3537443317f59eebb960839f613365a1231b163ff',
|
||||
'ecc4b83e0b76129f1635c2e866bc641cce6a5d65a6c89bc497b5b81e4bb0f3b6',
|
||||
'ad05ecff14b56693e2785eb4b6f06215c215eb1309eb19591d9380027aacfe21');
|
||||
|
||||
#
|
||||
# 18) Test concatenated thumbnail Montage (concatenated via special Concatenate mode)
|
||||
# Thumbnails should be compacted tightly together in a grid
|
||||
#
|
||||
++$test;
|
||||
testMontage( q//,
|
||||
q/background=>'#696e7e',, tile=>'4x4', geometry=>'90x80>', mode=>'Concatenate'/,
|
||||
'73dba1cf6a2077fca9c3d6a4f82ee5aa4481d64481423cffbb676b92e3f3c7dd',
|
||||
'108b50e6f8d5155f6c6f60dfe939e83ec465a917b3d8ec6fa1419d27ffa3cdb3',
|
||||
'1fdca151dfe00fdc106832696815eff00b7e32a5fb0af64b41cb08610661880e');
|
||||
#
|
||||
# 19) Test concatenated thumbnail Montage (concatentated by setting params to zero)
|
||||
# Thumbnails should be compacted tightly together in a grid
|
||||
#
|
||||
++$test;
|
||||
testMontage( q//,
|
||||
q/background=>'#696e7e',, tile=>'4x4', geometry=>'+0+0', mode=>'Unframe', shadow=>'False',
|
||||
borderwidth=>'0', background=>'gray'/,
|
||||
'73dba1cf6a2077fca9c3d6a4f82ee5aa4481d64481423cffbb676b92e3f3c7dd',
|
||||
'108b50e6f8d5155f6c6f60dfe939e83ec465a917b3d8ec6fa1419d27ffa3cdb3',
|
||||
'1fdca151dfe00fdc106832696815eff00b7e32a5fb0af64b41cb08610661880e');
|
BIN
ImageMagick-6.8.3-1/PerlMagick/t/mpeg/input.m2v
Normal file
BIN
ImageMagick-6.8.3-1/PerlMagick/t/mpeg/input.mpg
Normal file
30
ImageMagick-6.8.3-1/PerlMagick/t/mpeg/read.t
Normal file
|
@ -0,0 +1,30 @@
|
|||
#!/usr/bin/perl
|
||||
#
|
||||
# Test reading MPEG files
|
||||
#
|
||||
# Whenever a new test is added/removed, be sure to update the
|
||||
# 1..n ouput.
|
||||
#
|
||||
BEGIN { $| = 1; $test=1; print "1..2\n"; }
|
||||
END {print "not ok $test\n" unless $loaded;}
|
||||
use Image::Magick;
|
||||
$loaded=1;
|
||||
|
||||
require 't/subroutines.pl';
|
||||
|
||||
chdir 't/mpeg' || die 'Cd failed';
|
||||
|
||||
#
|
||||
# Motion Picture Experts Group file interchange format (version 2)
|
||||
#
|
||||
testRead( 'input.m2v',
|
||||
'113b91329ec4ad7d147e910e5fd8340d06db419ce6d0258de8993ec4673fc7bc' );
|
||||
|
||||
#
|
||||
# Motion Picture Experts Group file interchange format
|
||||
#
|
||||
++$test;
|
||||
testRead( 'input.mpg',
|
||||
'113b91329ec4ad7d147e910e5fd8340d06db419ce6d0258de8993ec4673fc7bc' );
|
||||
|
||||
1;
|