Search found 2 matches

by emil
2012-03-30T14:18:54-07:00
Forum: Users
Topic: Modifying of postscript layers separately after input
Replies: 3
Views: 6154

Re: Modifying of postscript layers separately after input

convert infile.ps (-settingX 0 -rotate 90) (-settingX 1 -rotate 270) outfile.jpg


try


convert infile.ps ( -clone 0 -rotate 90 ) ( -clone 1 -rotate 270 ) -delete 0,1 outfile.jpg

Be sure you have spaces between the parens and the commands inside them

Bingo! Thank You Fred!
It worked. (I was ...
by emil
2012-03-30T12:44:35-07:00
Forum: Users
Topic: Modifying of postscript layers separately after input
Replies: 3
Views: 6154

Modifying of postscript layers separately after input

I'm stumped (after many successful years of using IM!)
(infile.ps contains one or two separate layers)

convert infile.ps outfile.jpg
correctly produces> outfile-0.jpg and outfile-1.jpg

The problem is that I want to modify the two layers/images differently before I output them.

This is a ...