convert command change in behaviour between versions
Posted: 2015-11-10T07:39:05-07:00
Hi All
I have been using this line in a small bash script to make a thumbnail of the first page of a pdf file with a drop shadow on the whole thumbnail
After upgrading my OSX from 10.6 to 10.11 and reinstalling ImageMagick thru ports the output seems to have changed.
I don't know what version I was running previous (roughly three years old?) but now have
I used to get something that looked like this, but now I get something that looks like this.
What makes it drop shadow each element rather then the entire thumbnail?
Assuming I have no control over the input pdf, how do I force the second behaviour every time?
Comments appreciated
I have been using this line in a small bash script to make a thumbnail of the first page of a pdf file with a drop shadow on the whole thumbnail
Code: Select all
convert "$FILE[0]" -thumbnail 200x258 -bordercolor white -border 6 \( +clone -background black -shadow 80x3+2+2 \) +swap -background white -layers merge +repage "$FILE.gif" ;
I don't know what version I was running previous (roughly three years old?) but now have
ImageMagick 6.9.2-4 Q16 x86_64 2015-11-09
I used to get something that looked like this, but now I get something that looks like this.
What makes it drop shadow each element rather then the entire thumbnail?
Assuming I have no control over the input pdf, how do I force the second behaviour every time?
Comments appreciated