in reply to PerlMagick Scene attribute
My output is:#!/usr/bin/perl use strict; use warnings; use Image::Magick; unlink (glob("*.tif")); my $image = Image::Magick->new; my $filename = "test.pdf"; $image->Read($filename); my $p = $image->Get('scene'); print "\n\nScene1: $p\n"; $image->Set(scene=>15); $p = $image->Get('scene'); print "Scene2: $p\n\n"; $image->Write(filename=>"testp%04d.tif", compression=>'Group4', density=>"240x240");
So it appears as if "scene" is being properly set, but that it's being ignored by the Write method.Scene1: 0 Scene2: 15
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: PerlMagick Scene attribute
by Anonymous Monk on Sep 28, 2017 at 00:57 UTC | |
by afoken (Chancellor) on Sep 28, 2017 at 04:49 UTC | |
by Anonymous Monk on Sep 29, 2017 at 00:46 UTC | |
by afoken (Chancellor) on Oct 01, 2017 at 10:48 UTC | |
by Anonymous Monk on Oct 01, 2017 at 20:37 UTC |