Combining 2 convert commands into 1
Steven Matison <[email protected]>
| Newsgroups | gmane.comp.video.image-magick.user |
|---|---|
| Message-ID | <[email protected]> |
I have the following 2 convert command lines that work to solve my problem: eps to gif: convert -density 150 -resize 600x600 351028.eps -profile /home/USER/ profiles/USWebCoatedSWOP.icc -profile /home/USER/profiles/sRGB.icm 351028.gif gif to static padded size: convert -size 600x600 xc:white -filter lanczos -resize 600x600 351028.gif -gravity Center -composite +repage 351028-test.gif Is it possible to combine the arguements into the single command and still get the same output?