Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
In Ps, I want to design a gradient with two color which they are only different with brightness,pls see below:
This type of gradient can be made by separating two layers which the top layer is blended with Luminosity.
I am trying to use ajax to generate the gradient which I only need to send the color value to php ,then the color and the overlay png will be composed to output a result png.
My english is poor, it is hard for me to describe a probem clearly, sorry for that.
Note your black window showing your command has bad typing for the two xc: colors. You only have one xc: and the hsb(...) is not formatted as it should (see my command).
here i paste my code from bat file:
convert -size 25x256 xc:'hsb(43%,50%,30%)' xc:'hsb(43%,50%,70%)' gradient: -compose over -composite -rotate 90 result.png
pause