Search found 4 matches

by philmoz
2017-01-23T21:56:25-07:00
Forum: Developers
Topic: Drop shadow on watermark image
Replies: 19
Views: 27998

Re: Drop shadow on watermark image

This is weird. The following commands produce different results in 7.0.4-5 on OS X, even though the 'convert' app is just s symlink to 'magick'. convert background.png foreground.png -background none -gravity center -composite merged.png magick background.png foreground.png -background none -gravity...
by philmoz
2017-01-23T21:33:34-07:00
Forum: Developers
Topic: Drop shadow on watermark image
Replies: 19
Views: 27998

Re: Drop shadow on watermark image

Images are simple PNG files. Adding +repage has no effect
The 'magick logo: rose: -gravity center -composite tmp7.png' works for me as well; but convert does not.
by philmoz
2017-01-23T21:03:56-07:00
Forum: Developers
Topic: Drop shadow on watermark image
Replies: 19
Views: 27998

Re: Drop shadow on watermark image

Thanks. I think there is a problem with -gravity center as well. Example - this command: convert background.png foreground.png -background none -gravity center -composite merged.png In 6.9.7-3 this centers the foreground image on the background image. In 7.0.4-5 the foreground is placed in the top l...
by philmoz
2017-01-23T18:49:38-07:00
Forum: Developers
Topic: Drop shadow on watermark image
Replies: 19
Views: 27998

Re: Drop shadow on watermark image

Drop shadows seem to be broken in 7.0.4-5 (OS X Sierra, installed via homebrew). The command from the previous post, with the same sample image generates the result shown below. convert sample.png \ \( -clone 0 -resize 1000x1000 -modulate 50 -blur 0x10 -gravity center -crop 854x480+0+0 +repage \) \ ...