Search found 4 matches

by btate
2011-01-28T10:50:38-07:00
Forum: Users
Topic: Switching input file mid command
Replies: 6
Views: 10390

Re: Switching input file mid command

That makes sense. I do need the original resized image, so I guess I have to go that route. But that memory command could definitely come in handy down the road. Thanks a lot. Saved me quite a bit of misery.
by btate
2011-01-28T10:29:50-07:00
Forum: Users
Topic: Switching input file mid command
Replies: 6
Views: 10390

Re: Switching input file mid command

I ended up doing this, because I need to base the crops off the result from the resize. Seems to work,

Code: Select all

convert ./image.png -resize 160x320 -write ./image-resize.png -crop 100x100+15+15 -write ./image-cropped-1.png +delete ./image-resize.png -crop 50x50+10+10 ./image-cropped-2.png
by btate
2011-01-28T10:19:56-07:00
Forum: Users
Topic: Switching input file mid command
Replies: 6
Views: 10390

Re: Switching input file mid command

What is that mpr:image
by btate
2011-01-28T09:31:10-07:00
Forum: Users
Topic: Switching input file mid command
Replies: 6
Views: 10390

Switching input file mid command

I'm working on a site that is forced to use a media conversion server. That server lets me issue the imagemagick parameters, but not the actual convert command, so multiple commands are out. I have an image that I need resized, then I need that resized image cropped twice. I need all three resulting ...