Search found 2 matches

by stefda@gmail.com
2018-12-26T01:29:26-07:00
Forum: Users
Topic: Create gradient and compose with image in one command
Replies: 2
Views: 2815

Re: Create gradient and compose with image in one command

A few more searches and I finally understand the anatomy of the command line! What I'm after above can be achieved with this simple command:

Code: Select all

convert input.jpg -size 1200x747 gradient: -compose linear_burn -composite output.jpg
🤦‍♂️
by stefda@gmail.com
2018-12-25T22:28:49-07:00
Forum: Users
Topic: Create gradient and compose with image in one command
Replies: 2
Views: 2815

Create gradient and compose with image in one command

I can't figure out if it is possible to create a new image with gradient and compose it with an existing image in one command. Please help. Command to generate the gradient: convert -size 1200x747 gradient: gradient.jpg Command to compose the gradient with an existing `input.jpg`: convert input.jpg ...