Author Topic: Solution for ImageMagick  (Read 945 times)

0 Members and 1 Guest are viewing this topic.

Offline dbakker

  • album.pl User
  • *
  • Posts: 1
  • Karma: +0/-0
  • I forgot to change the default text.
Solution for ImageMagick
« on: September 09, 2002, 06:20:03 »
Maybe this was posted before, than i'm sorry for writing this, but with the latest version of ImageMagick, the resize option no longer works, this options is now called by the function -size.

If you open Album.pl look for the following command:

     $system_call.="-resize ";
     if ($mode)
     {
           $system_call.="$pic_resize";

change this into :

     $system_call.="-size ";
     if ($mode)
     {
           $system_call.="$pic_resize";

This worked for me, now the Thumbnails are created without any problems.

Hope this helps anyone.
« Last Edit: December 31, 1969, 19:00:00 by 1039064400 »

Offline Mike Bobbitt

  • album.pl Author
  • Administrator
  • I Spend Too Much Time Here
  • *****
  • Posts: 3381
  • Karma: +35/-2
    • Mike's Development Archive
Re: Solution for ImageMagick
« Reply #1 on: September 09, 2002, 07:06:06 »
That's odd, I just installed 5.4.9 (latest) and it still has the resize command in it. What version are you running?
« Last Edit: December 31, 1969, 19:00:00 by 1039064400 »