OK, I moved the -compose over as you suggested, and that still works, so that's good.
I think I get it. So using '-flatten' is would have used the last -compose setting, which was "Multiply"... Causing the image to be flattened wrong. By inserting the -Compose Over, flatten will use "Over" instead ...
Search found 3 matches
- 2015-05-25T13:15:48-07:00
- Forum: Users
- Topic: ImageMagick command without intermediary file fails
- Replies: 7
- Views: 5923
- 2015-05-25T12:15:40-07:00
- Forum: Users
- Topic: ImageMagick command without intermediary file fails
- Replies: 7
- Views: 5923
Re: ImageMagick command without intermediary file fails
Hi Snibgo..
That actually worked, I added it like this.
convert.exe -size 150x64 xc:none -fill green
-draw "roundrectangle 10,10 140,54 8,8"
( +clone -alpha extract -blur 0x12 -shade 110x0
-normalize -sigmoidal-contrast 16,60% -evaluate multiply .5
-roll +4+8 +clone -compose Screen ...
That actually worked, I added it like this.
convert.exe -size 150x64 xc:none -fill green
-draw "roundrectangle 10,10 140,54 8,8"
( +clone -alpha extract -blur 0x12 -shade 110x0
-normalize -sigmoidal-contrast 16,60% -evaluate multiply .5
-roll +4+8 +clone -compose Screen ...
- 2015-05-25T11:35:14-07:00
- Forum: Users
- Topic: ImageMagick command without intermediary file fails
- Replies: 7
- Views: 5923
ImageMagick command without intermediary file fails
I'm working on the example from ImageMagick called " Gel" Effects http://www.imagemagick.org/Usage/advanced/#gel_effects on the ImageMagick Example pages.
Instead of executing the ImageMagick script in many steps with intermediary images, I want to do it in ONE step with no intermediary files.
My ...
Instead of executing the ImageMagick script in many steps with intermediary images, I want to do it in ONE step with no intermediary files.
My ...