Problem with thumbnails

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: Problem with thumbnails

Post by Bonzo »

As you say the transparent is black as jpg does not support transparency.

If you are working on psd files the layer containing all the layers will be [0].

Also if your Imagemagick version is greater than 6 you need to read the image in first:

Code: Select all

exec (" convert  '$pixas2' -flatten -colorspace rgb -quality 60 -antialias -geometry {$maz_width2}x{$maz_height2} '$_aaa1'");
Post Reply