+2019-06-01 7.0.8-48 Cristy <quetzlzacatenango@image...>
+ * Release ImageMagick version 7.0.8-48, GIT revision 15
+
+2019-06-01 7.0.8-48 Cristy <quetzlzacatenango@image...>
+ * Fix transient convolution bug (reference
+ https://imagemagick.org/discourse-server/viewtopic.php?f=3&t=36119).
+
2019-05-26 7.0.8-47 Cristy <quetzlzacatenango@image...>
* Release ImageMagick version 7.0.8-47, GIT revision 15681:5cffc6cbb:20190526
testMontage( q/bordercolor=>'blue', mattecolor=>'red'/,
q/background=>'#696e7e', tile=>'4x4', geometry=>'90x80+3+3>', frame=>'8x10',
borderwidth=>'0', gravity=>'Center', background=>'gray'/,
- 'd65a3fcf9119a59414d52b6b11c0d131579341dbae03e4f18776dc8a01da2931');
+ 'd65a3fcf9119a59414d52b6b11c0d131579341dbae03e4f18776dc8a01da2931',
+ '2aa66c8d3eb0c3b3e765df6ffc5977c026dd65f7839b763a48192cdd45d27474');
#
# 12) Test Framed Montage with drop-shadows
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'/,
- 'ff43a8c5dd980438c10436a71b47afc538ae3839ba57251768fa07add1229d8a');
+ 'ff43a8c5dd980438c10436a71b47afc538ae3839ba57251768fa07add1229d8a',
+ '885d043b63810d030697104629d79f2141fab28cb561cf84b4f323209cee4f42');
#
# 13) Test Framed Montage with drop-shadows and background texture
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:'/,
- '0de019cb1e17fb9d3e60e6ae3931c6d384859613c3fc930cfef46720cae8237');
+ '0de019cb1e17fb9d3e60e6ae3931c6d384859613c3fc930cfef46720cae8237',
+ '4774caea304139483a3f50a8b94690c7503ccbea89c0ae698e8bb8996d0cfda8');
#
# 14) Test Un-bordered, Un-framed Montage
$ref_32 = $ref_16;
}
- if (Image::Magick->new()->QuantumDepth == 32)
- {
- $ref_signature=$ref_32;
- }
- elsif (Image::Magick->new()->QuantumDepth == 16)
- {
- $ref_signature=$ref_16;
- }
- else
- {
- $ref_signature=$ref_8;
- }
-
# Create image for image list
$images=Image::Magick->new;
# $montage->Display();
$signature=$montage->GetAttribute('signature');
if ( defined( $signature ) ) {
- if ( $signature ne $ref_signature ) {
+ if ( $signature ne $ref_8 && $signature ne $ref_16 && $signature ne $ref_32 ) {
print "ReadImage()\n";
print "Test $test, signatures do not match.\n";
- print " Expected: $ref_signature\n";
+ print " Expected: $ref_8\n";
print " Computed: $signature\n";
print " Depth: ", Image::Magick->new()->QuantumDepth, "\n";
$status = $montage->Write("test_${test}_out.miff");