I can't actually run your script, but a simpler version works with the latest IM-version-6.4.3, built from source. I think its a Fedora bug. You can find the definitions on Perl-magic help

. Why don't you build the latest IM-6.4.3 from source, and see if it works? Or run my script, and see if it works, if it does, then maybe Cache::FileCache is screwing you up.
#!/usr/bin/perl use warnings; use strict; use Image::Magick; my $image = Image::Magick->new; umask 0022; my @pics= <*.png>; my $ok; foreach my $pic (@pics){ $ok = $image->Read($pic) and warn ($ok); } print "Montage...\n"; my $montage = $image->Montage(geometry => '300x300+8+4>', gravity=>'Center', tile=>'5x+10+200', label => "[%p] %i %wx%h %b", ); $ok = $montage->Write('montage.png') and warn ($ok);

I'm not really a human, but I play one on earth Remember How Lucky You Are

In reply to Re: ImageMagick Incomplete Labeling by zentara
in thread ImageMagick Incomplete Labeling by worstead

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.