]> granicus.if.org Git - imagemagick/commitdiff
...
authorCristy <urban-warrior@imagemagick.org>
Mon, 5 Dec 2016 20:42:23 +0000 (15:42 -0500)
committerCristy <urban-warrior@imagemagick.org>
Mon, 5 Dec 2016 20:42:23 +0000 (15:42 -0500)
PerlMagick/Changelog
PerlMagick/demo/demo.pl

index 5854c517d4af6d7e5b8adb4c064af9d717dff343..b31a3391fdc60e24371628f56ba425084face737 100644 (file)
@@ -1,3 +1,7 @@
+2014-11-05  7.03 Cristy  <quetzlzacatenango@image...>
+  * Add support for $image->Colorspace() (reference
+    https://www.imagemagick.org/discourse-server/viewtopic.php?f=7&t=30980).
+
 2011-08-01  7.00 Cristy  <quetzlzacatenango@image...>
   * New version 7.00.
 
index b175bcfd34726c68bc24d6b94c99a51f70a32535..425acf7711520117b5411f33de4ab9d5081c3de5 100644 (file)
@@ -109,6 +109,12 @@ $example->Label('ColorMatrix');
 $example->ColorMatrix([1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0.5, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1]);
 push(@$images,$example);
 
+print "Colorspace...\n";
+$example=$model->Clone();
+$example->Label('Colorspace');
+$example->Colorspace('Lab');
+push(@$images,$example);
+
 print "Composite...\n";
 $example=$model->Clone();
 $example->Label('Composite');