- $layers = $images->OptimizeLayers(method=>'optimize-plus');
How to ... OptimizePlus
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
That probabably should be changed to just
as layers does a lot more than just optimize images. It also compares, and I even plan some future layer composition methods, to compose pairs of images (after a shuffle image sequence operator is added) compose onto static background, and even compose static source, type methods.
Currently the -draw 'image' technique is equivelent to the 'static source' composition method.
These additions were put on hold due to other more pressing happenings.
Code: Select all
$layers = $images->Layers(method=>'optimize-plus');
Currently the -draw 'image' technique is equivelent to the 'static source' composition method.
These additions were put on hold due to other more pressing happenings.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/
Re: How to ... OptimizePlus
Hi,
Does PerlMagick 6.3.4 have this feature? It is documented in the PerlMagick manual, but when I do:
I get the error,
Does PerlMagick 6.3.4 have this feature? It is documented in the PerlMagick manual, but when I do:
Code: Select all
$image->Layers ('method'=>'optimize');
Code: Select all
Usage: Layers(ref) at ./foo.pl line 20
Re: How to ... OptimizePlus
Bug. Fixed in ImageMagick 6.3.5-0 beta available sometime tommorrow.
Re: How to ... OptimizePlus
magick wrote:Bug. Fixed in ImageMagick 6.3.5-0 beta available sometime tommorrow.
Great, and thank you for the quick reply.