Search found 4 matches
- 2016-05-03T06:07:35-07:00
- Forum: Users
- Topic: Combine few operations in cmd
- Replies: 6
- Views: 2667
Re: Combine few operations in cmd
Thank you! This exactly what I needed =)
- 2016-05-02T08:34:24-07:00
- Forum: Users
- Topic: Combine few operations in cmd
- Replies: 6
- Views: 2667
Re: Combine few operations in cmd
Can you show it in example of my code? Here is what I am trying to do: convert "c:\image1.bmp" -resize 200x400 -colorspace Gray -geometry +100+50 "c:\result.png" composite "c:\result.png" -geometry +50+100 "c:\image2.png" "c:\result.png") composite "c:\image3.png" "c:\result.png" "c:\result.png ...
- 2016-05-02T07:59:56-07:00
- Forum: Users
- Topic: Combine few operations in cmd
- Replies: 6
- Views: 2667
Re: Combine few operations in cmd
Something like that?
But this saved only Bacjground image without "img1.bmp" on it.
Code: Select all
convert "c:\img1.bmp" -resize 200x400 -colorspace Gray -composite -geometry +100+100 "c:\Background.png" "c:\result.png"
- 2016-05-02T06:21:20-07:00
- Forum: Users
- Topic: Combine few operations in cmd
- Replies: 6
- Views: 2667
Combine few operations in cmd
Hello, I am trying to make two operations in cmd. Here is it: convert "c:\image1.png" -transparent white -resize 40% "c:\image1-1.png" composite -gravity center "c:\image1-1.png" -geometry +120+100 "c:\Background.png" "c:\Overlay.png" "c:\Done.png" Everything works fine. But how can I write these ...