Search found 7 matches

by Keith Hedger
2011-12-21T04:14:29-07:00
Forum: Users
Topic: SOLVED:Gradient help
Replies: 13
Views: 18858

Re: SOLVED:Gradient help

Bonzo wrote:Yes a good image - so you wanted the gradiant for the loading bar ?
Is the train also an indication of loaded amount?
Yes and what a good idea i will have a look at it when I get time.
by Keith Hedger
2011-12-20T13:18:40-07:00
Forum: Users
Topic: SOLVED:Gradient help
Replies: 13
Views: 18858

Re: SOLVED:Gradient help

Cheers! I was looking for a drop down.
by Keith Hedger
2011-12-20T05:50:21-07:00
Forum: Users
Topic: SOLVED:Gradient help
Replies: 13
Views: 18858

Re: Gradient help

For those who may be interested this is the final result, actually its one screen out of 34 generated by a graphical boot sequence, thanks for the help guys!
Image
P.S.
Can I mark this thread as SOLVED like other forums?
by Keith Hedger
2011-12-20T04:00:24-07:00
Forum: Users
Topic: SOLVED:Gradient help
Replies: 13
Views: 18858

Re: Gradient help

THANKS!! fmw42
The -size ${W1}x${H} gradient: -geometry +20+0 -compose over -composite command is exactly what I was looking for, problem solved! :) :) :)
by Keith Hedger
2011-12-19T16:34:18-07:00
Forum: Users
Topic: SOLVED:Gradient help
Replies: 13
Views: 18858

Re: Gradient help

This command line is just a snippet and shows the problem (it is not the finished command line, just the bit I can't get working) with the gradient NOT the bar itself, as you can see by the second gradient it is not the same as the top gradient it starts half way. I need both bars to look the same ...
by Keith Hedger
2011-12-19T11:33:56-07:00
Forum: Users
Topic: SOLVED:Gradient help
Replies: 13
Views: 18858

Re: Gradient help

I don't believe that you can do calculations such as $((H-1)) inside the draw. Do them outside as a variable calculation and then just reference the variable. In bash $() is command replacement and (()) is c like integer maths so it does the calculation and then substitutes the result so is a valid ...
by Keith Hedger
2011-12-19T09:29:49-07:00
Forum: Users
Topic: SOLVED:Gradient help
Replies: 13
Views: 18858

SOLVED:Gradient help

Help!! I have been going round in circles trying to get this to work #!/bin/bash -e Y=38 H=16 X=20 convert -size 500x500 canvas:green -size 1x$H -tile gradient:white-black -draw "rectangle $X,0, 200,$((H-1))" -draw "rectangle 0,$Y, 200,$((H+Y-1))" show: The first bars gradient is fine but the second ...