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!
Search found 8 matches
- 2014-11-19T11:00:21-07:00
- Forum: IMagick
- Topic: Blend mode: Linear-dodge in php
- Replies: 10
- Views: 22579
- 2014-11-19T10:48:19-07:00
- Forum: IMagick
- Topic: Blend mode: Linear-dodge in php
- Replies: 10
- Views: 22579
Re: Blend mode: Linear-dodge in php
Hmm... ok, Thank you! i'l try it!fmw42 wrote:According to http://www.imagemagick.org/Usage/compose/#lineardodge, it is the same as -compose plus, except for partially transparent pixels.
- 2014-11-19T10:43:18-07:00
- Forum: IMagick
- Topic: Blend mode: Linear-dodge in php
- Replies: 10
- Views: 22579
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 ...
- 2014-11-19T10:29:56-07:00
- Forum: IMagick
- Topic: Blend mode: Linear-dodge in php
- Replies: 10
- Views: 22579
Re: Blend mode: Linear-dodge in php
sorry, misunderstood
- 2014-11-19T10:04:27-07:00
- Forum: IMagick
- Topic: Blend mode: Linear-dodge in php
- Replies: 10
- Views: 22579
Blend mode: Linear-dodge in php
Hello!
To composite images i use:
http://php.net/manual/ru/imagick.compositeimage.php
How to use that with blend mode "Linear-dodge"?
To composite images i use:
Code: Select all
$canvas->compositeimage($image, Imagick::COMPOSITE_MULTIPLY, 10, 150);
How to use that with blend mode "Linear-dodge"?
- 2014-03-21T04:24:48-07:00
- Forum: IMagick
- Topic: PNG + GIF combine questions
- Replies: 3
- Views: 8678
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.
Binary - a 2 state - or transparency is, or e not is not it?
That is possible only with the flow of the background.
- 2014-03-20T15:18:02-07:00
- Forum: IMagick
- Topic: PNG + GIF combine questions
- Replies: 3
- Views: 8678
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.uzerbar.ru/gallery/gormonn.png ...
- 2014-03-19T03:30:21-07:00
- Forum: IMagick
- Topic: PNG + GIF combine questions
- Replies: 3
- Views: 8678
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 $frame ...