Hi Everyone,
I am new to ImageMagck, I have a few commands that I am using to modify images how would I put these commands together?
convert 1.JPG -resize 847x546 1.JPG
convert 1.JPG -chop 0x25 1.JPG
convert t.png 1.JPG -geometry +228+248 -composite 1.pdf
Thanks in advance!
- David
Combining Commands
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Combining Commands
Code: Select all
convert t.png ( 1.JPG -resize 847x546 -chop 0x25 ) -geometry +228+248 -composite 1.pdf
snibgo's IM pages: im.snibgo.com
Re: Combining Commands
Thanks for the help!