Search found 8 matches

by gormonn
2014-11-19T11:00:21-07:00
Forum: IMagick
Topic: Blend mode: Linear-dodge in php
Replies: 10
Views: 20771

Re: Blend mode: Linear-dodge in php

COMPOSITE_PLUS helped!
Thank you so much, fmw42! Or how you real name? Fred?
You saved me from sleepless nights!
Happiness and success to you!
by gormonn
2014-11-19T10:48:19-07:00
Forum: IMagick
Topic: Blend mode: Linear-dodge in php
Replies: 10
Views: 20771

Re: Blend mode: Linear-dodge in php

fmw42 wrote:According to http://www.imagemagick.org/Usage/compose/#lineardodge, it is the same as -compose plus, except for partially transparent pixels.
Hmm... ok, Thank you! i'l try it!
by gormonn
2014-11-19T10:43:18-07:00
Forum: IMagick
Topic: Blend mode: Linear-dodge in php
Replies: 10
Views: 20771

Re: Blend mode: Linear-dodge in php

Hmm... okay... but imageck haven't constant with that blend mode: http://php.net/manual/ru/imagick.constants.php That is why I asked a question there. I do not understand how to write the correct command. I tried to understand anything from the documentation, but did not understand, and therefore do...
by gormonn
2014-11-19T10:29:56-07:00
Forum: IMagick
Topic: Blend mode: Linear-dodge in php
Replies: 10
Views: 20771

Re: Blend mode: Linear-dodge in php

sorry, misunderstood
by gormonn
2014-11-19T10:04:27-07:00
Forum: IMagick
Topic: Blend mode: Linear-dodge in php
Replies: 10
Views: 20771

Blend mode: Linear-dodge in php

Hello!
To composite images i use:

Code: Select all

$canvas->compositeimage($image, Imagick::COMPOSITE_MULTIPLY, 10, 150);
http://php.net/manual/ru/imagick.compositeimage.php

How to use that with blend mode "Linear-dodge"?
by gormonn
2014-03-21T04:24:48-07:00
Forum: IMagick
Topic: PNG + GIF combine questions
Replies: 3
Views: 8014

Re: PNG + GIF combine questions

Thank you very much! I did not know this subtleties.
Binary - a 2 state - or transparency is, or e not is not it?
That is possible only with the flow of the background.
by gormonn
2014-03-20T15:18:02-07:00
Forum: IMagick
Topic: PNG + GIF combine questions
Replies: 3
Views: 8014

Re: PNG + GIF combine questions

Now i use this: $cmd = " convert $path \( $gif -repage 0x0+300+53\! \) \ -coalesce -delete 0 -deconstruct -loop 0 ".$nickName.".gif gif_anim_montage ".$nickName.".gif bunny_bgnd_frames.gif "; And i have a problem. Aplha channell is'not support? How to be: http://wot.uze...
by gormonn
2014-03-19T03:30:21-07:00
Forum: IMagick
Topic: PNG + GIF combine questions
Replies: 3
Views: 8014

PNG + GIF combine questions

Hello! I am developing a service that will combine static images with animated pictures. In howling script I use the following PHP algorithm: $animation = new Imagick(); $animation->setFormat("GIF"); $gif = new Imagick('img/gif/anim.gif'); $gif = $gif->coalesceImages(); foreach ($gif as $f...