Search found 3 matches

by mantafight
2017-10-09T16:31:45-07:00
Forum: Users
Topic: Vertical linear transparent gradient
Replies: 7
Views: 6429

Re: Vertical linear transparent gradient

thanks for the links and examples, your help is incredibly useful for everything I wanted to achieve!
by mantafight
2017-10-09T16:00:54-07:00
Forum: Users
Topic: Vertical linear transparent gradient
Replies: 7
Views: 6429

Re: Vertical linear transparent gradient

@snibgo, thanks so much! your example got me there, all I had to really do was negate the starting image so I could make the right part transparent I ended up with: convert -size 1280x720 gradient: -function Polynomial -4,4,0 -evaluate Pow 0.9 -negate +write g0.png \( +clone -fill Black -colorize 10...
by mantafight
2017-10-09T10:54:19-07:00
Forum: Users
Topic: Vertical linear transparent gradient
Replies: 7
Views: 6429

Vertical linear transparent gradient

hello, i'm trying to make a vertical gradient that goes from black to transparent to black so far, I've been using this command: convert -size '1280x720' gradient: -function Polynomial -4,4,0 -evaluate Pow 0.9 gradient_test_01.jpg which goes from black-white-black because of the -function, but I can...