How to create animated glitters with PHP and imagemagick
Posted: 2008-12-11T22:51:31-07:00
Hy Guys,
After a lot of hours trying to create animated glitters, my last solution is this forum.
I wanna create something like the image bellow.
I tried to use the code bellow, with the "stars" files replaced by others gifs, also created for this purpose.
but, I did not have sucess.
I did this in php:
I tried on localhost, with windows xp and apache.
The problem isn't with my server, because other simple codes works well.
Codes like: and many others works very well.
Please, if somebody, knows how to do that effect using PHP and "exec()", please, give me some help. I thank.
thanks.
After a lot of hours trying to create animated glitters, my last solution is this forum.
I wanna create something like the image bellow.
I tried to use the code bellow, with the "stars" files replaced by others gifs, also created for this purpose.
Code: Select all
convert rose: -compose Screen \
\( -clone 0 stars1.gif -composite \) \
\( -clone 0 stars2.gif -composite \) \
\( -clone 0 stars3.gif -composite \) \
-delete 0 -set delay 25 -layers Optimize rose_sparkle.gif
I did this in php:
Code: Select all
<?
exec("D:/Arquiv~1/ImageMagick-6.4.3-Q16/convert.exe convert rose: -compose Screen -clone 0 stars1.gif -composite -clone 0 stars2.gif -composite -clone 0 stars3.gif -composite -delete 0 -set delay 25 -layers Optimize rose_sparkle.gif");
?>
The problem isn't with my server, because other simple codes works well.
Codes like:
Code: Select all
<?
exec("D:/Arquiv~1/ImageMagick-6.4.3-Q16/convert.exe koala.gif -flip flip.gif");
?>
Please, if somebody, knows how to do that effect using PHP and "exec()", please, give me some help. I thank.
thanks.