Search found 122 matches

by linjuming
2011-02-11T06:01:33-07:00
Forum: Users
Topic: how to set the opecity when composimg png files?
Replies: 14
Views: 26695

Re: how to set the opecity when composimg png files?

refer to this post: http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=17503&p=65756&hilit=opacity#p65756 source psd file description: http://i532.photobucket.com/albums/ee323/linjuming/questions/opacity_2.png source png files: http://i532.photobucket.com/albums/ee323/linjum...
by linjuming
2011-02-11T01:48:27-07:00
Forum: Users
Topic: how to set the opecity when composimg png files?
Replies: 14
Views: 26695

Re: how to set the opecity when composimg png files?

the command line below can set the opacity for top png when "-compose dissolve " : convert 1.png 2.png -alpha on -compose dissolve -define compose:args=50 -composite hello.png but there is no use when "-compose overlay " : convert 1.png 2.png -alpha on -compose overlay -define co...
by linjuming
2011-02-11T01:42:52-07:00
Forum: Users
Topic: how to set the opecity when composimg png files?
Replies: 14
Views: 26695

how to set the opecity when composimg png files?

how to set the top png file's opacity when it is composed on top to the background png file? like the same work in PS.
Image
by linjuming
2011-02-10T20:08:10-07:00
Forum: Users
Topic: any option for composition method of luminosity?
Replies: 19
Views: 33434

Re: any option for composition method of luminosity?

your reply is what I need ,this method is more convenient and faster than composing two png files. Thank you very much!
by linjuming
2011-02-10T19:21:36-07:00
Forum: Users
Topic: any option for composition method of luminosity?
Replies: 19
Views: 33434

Re: any option for composition method of luminosity?

In Ps, I want to design a gradient with two color which they are only different with brightness,pls see below: http://i532.photobucket.com/albums/ee323/linjuming/questions/brightness.png This type of gradient can be made by separating two layers which the top layer is blended with Luminosity. I am t...
by linjuming
2011-02-10T05:38:09-07:00
Forum: Users
Topic: any option for composition method of luminosity?
Replies: 19
Views: 33434

any option for composition method of luminosity?

Image

convert test.psd[1] test.psd[2] -compose {what} -composite test.png

I find no "Luminosity" in the toturial:
http://www.imagemagick.org/Usage/compose/

can IM do it?
by linjuming
2011-02-06T22:52:50-07:00
Forum: Users
Topic: how to merge 2 layers using softlight or overlay in IM?
Replies: 8
Views: 15818

Re: how to merge 2 layers using softlight or overlay in IM?

Thank you very much,I am using the latest version of IM in XP window system,I just want to try to generate css background images using ajax,for photoshop is not very handy when coding a html page then preview in browser. So if the IM can not do that effect,I will give up the thought and go back to PS.
by linjuming
2011-02-06T22:37:51-07:00
Forum: Users
Topic: how to merge 2 layers using softlight or overlay in IM?
Replies: 8
Views: 15818

Re: how to merge 2 layers using softlight or overlay in IM?

IM converts PS background transparency into alpha transparency. Thus what you see in PS is not the same as what most other tools such as IM convert it into. Most other tools will convert PS background transparency into alpha transparency. So your PS channels will not be the same in IM. is there any...
by linjuming
2011-02-06T22:31:37-07:00
Forum: Users
Topic: how to merge 2 layers using softlight or overlay in IM?
Replies: 8
Views: 15818

Re: how to merge 2 layers using softlight or overlay in IM?

see another color background compare:
Image
by linjuming
2011-02-06T22:21:39-07:00
Forum: Users
Topic: how to merge 2 layers using softlight or overlay in IM?
Replies: 8
Views: 15818

Re: how to merge 2 layers using softlight or overlay in IM?

I want to generate a png file from the test.psd using IM. test.psd file: http://linjuming.zy1668.com/my_question/imagemagick/test.zip code: convert test.psd[1] test.psd[2] -alpha on -compose dissolve -define compose:args=50 -composite hello.png result png file: http://i532.photobucket.com/albums/ee3...
by linjuming
2011-02-06T19:36:03-07:00
Forum: Users
Topic: how to merge 2 layers using softlight or overlay in IM?
Replies: 8
Views: 15818

how to merge 2 layers using softlight or overlay in IM?

how to merge 2 layers using softlight or overlay in IM? I study the compose method of imagemagic : http://www.imagemagick.org/Usage/compose/ , but I can not find the method to output a png that the top layer with softlight or overlay. the effect should be bellow: http://i532.photobucket.com/albums/e...
by linjuming
2011-01-25T19:12:00-07:00
Forum: IMagick
Topic: How to code a transparent gradient using imagick in php?
Replies: 9
Views: 24481

Re: How to code a transparent gradient using imagick in php?

Yes , it works in command line. Thank you very much. but i doubt whether it can use in ajax if I use command line. <?php $width="300"; exec("convert -size {$width}x100 gradient:red-transparent gradient.png"); if(file_exists("gradient.png")){ echo "yes"; } ?> t...
by linjuming
2011-01-25T10:21:05-07:00
Forum: IMagick
Topic: How to code a transparent gradient using imagick in php?
Replies: 9
Views: 24481

Re: How to code a transparent gradient using imagick in php?

how ? can you write down the code? how to output a png32?
by linjuming
2011-01-25T08:12:52-07:00
Forum: IMagick
Topic: How to code a transparent gradient using imagick in php?
Replies: 9
Views: 24481

Re: How to code a transparent gradient using imagick in php?

Please have a look at this example:
http://www.eclecticdjs.com/mike/tutoria ... /index.php
test in my computer :
the background should be transparent which is black ,why?


Image