Search found 122 matches

by linjuming
2011-08-15T03:48:55-07:00
Forum: Users
Topic: how to cutting an img from right-bottom?
Replies: 2
Views: 5602

Re: how to cutting an img from right-bottom?

Bonzo wrote:Try:

Code: Select all

convert input.jpg -gravity southeast -crop 30x30+0+0 +repage output.jpg
it works ,thank you very much!
by linjuming
2011-08-15T03:07:26-07:00
Forum: Users
Topic: how to cutting an img from right-bottom?
Replies: 2
Views: 5602

how to cutting an img from right-bottom?

Image

I can not find any parameter to cut an img from the reverse direction from
http://www.imagemagick.org/Usage/crop/

how to do that?
by linjuming
2011-07-10T19:07:42-07:00
Forum: Users
Topic: how to convert gray color to a given color?
Replies: 10
Views: 18973

Re: how to convert gray color to a given color?

h=$((100*243/360))
s=66
echo "h=$h; s=$s"
convert -size 100x100 gradient:"#b3b3b3-#0897ef" -colorspace hsl \
-channel r -evaluate set $h% +channel -channel g -evaluate set $s% \
+channel -colorspace rgb tmp6.png

this is good enough
by linjuming
2011-07-09T23:37:01-07:00
Forum: Users
Topic: how to convert gray color to a given color?
Replies: 10
Views: 18973

Re: how to convert gray color to a given color?

yes , great , that is what i want .
Thank you very much.
by linjuming
2011-07-09T23:15:35-07:00
Forum: Users
Topic: how to convert gray color to a given color?
Replies: 10
Views: 18973

Re: how to convert gray color to a given color?

1,i firstly ceate the #b3b3b3-#4d4d4d gradient in photoshop (ie:a.png) 2,then use Hue/Saturation tool to get some random color to get the colorize gradient (ie:b_gd.png) 3,the i pick the top color of the colorize gradient (ie:0897ef),and paste a square to get the pure color (ie:b.png) my thinking is...
by linjuming
2011-07-09T22:15:38-07:00
Forum: Users
Topic: how to convert gray color to a given color?
Replies: 10
Views: 18973

Re: how to convert gray color to a given color?

the b_gd.png is created approximately in photoshop. the theory is similar with -modulate convert; http://i532.photobucket.com/albums/ee323/linjuming/questions/1-12.png and similar with Hue/Saturation in photoshop ,but select the colorize option. http://i532.photobucket.com/albums/ee323/linjuming/que...
by linjuming
2011-07-09T04:24:28-07:00
Forum: Users
Topic: how to convert gray color to a given color?
Replies: 10
Views: 18973

how to convert gray color to a given color?

if the original color is not gray ,can use this method to do: (modulate convert ,why the result is not the same color?) http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=19044 when the original color is gray ,the hsl (h=0,s=0,l=x) is not suitable for "hue/hue" compare ,th...
by linjuming
2011-07-08T19:55:42-07:00
Forum: Users
Topic: same command not the same transparent preview?
Replies: 12
Views: 21939

Re: same command not the same transparent preview?

you cannot create an image with a checkerboard to represent transparent and have the checkerboard removed when you overlay the gradient on some image. PS has two kinds of transparency -- background (shown as checkerboard) and alpha channel. IM only uses alpha channel transparency. Thus if you just ...
by linjuming
2011-07-08T19:37:53-07:00
Forum: Users
Topic: same command not the same transparent preview?
Replies: 12
Views: 21939

Re: same command not the same transparent preview?

o no ,you misunderstand the transparent for pattern:checkerboard,they are transparent,not checkbord.

Image
by linjuming
2011-07-08T19:01:40-07:00
Forum: Users
Topic: same command not the same transparent preview?
Replies: 12
Views: 21939

Re: same command not the same transparent preview?

my purpose is to create the transparent png with the same preview effect what output with photoshop. the im created png in my pc is transparent (can see the third img below) ,but can not see the transparent in lister. not the same preview with ps-done png. not very serious problem ,can use in html w...
by linjuming
2011-07-08T18:11:11-07:00
Forum: Users
Topic: same command not the same transparent preview?
Replies: 12
Views: 21939

Re: same command not the same transparent preview?

thank you, it seems not so perfect for windows .
by linjuming
2011-07-08T10:55:16-07:00
Forum: Users
Topic: modulate convert ,why the result is not the same color?
Replies: 6
Views: 14101

Re: modulate convert ,why the result is not the same color?

not easy to understand , but good to use . Thank you very much !
by linjuming
2011-07-08T10:48:32-07:00
Forum: Users
Topic: same command not the same transparent preview?
Replies: 12
Views: 21939

Re: same command not the same transparent preview?

cmd: convert -size 10x250 gradient:black-none -fill #143fae -sigmoidal-contrast 6,50% -colorize 100% 3_me.png not the same? very strange http://i532.photobucket.com/albums/ee323/linjuming/questions/1-5.png http://i532.photobucket.com/albums/ee323/linjuming/questions/2-3.png ps: the 3.png from wireho...
by linjuming
2011-07-08T06:34:06-07:00
Forum: Users
Topic: same command not the same transparent preview?
Replies: 12
Views: 21939

Re: same command not the same transparent preview?

my vesion is the latest vesion 6.7.0 q16