when I read a archive .gif with read and write it, I don't get an animated image, I get a static image.
this is how I am trying:
int main(int argc,char **argv)
{
InitializeMagick(*argv);
Image image;
image.read("blue_heart_02.gif");
image.write( "uopoiopo.gif");
}
Search found 2 matches
- 2016-11-06T12:11:14-07:00
- Forum: Developers
- Topic: the read function does not work for .gif archive
- Replies: 1
- Views: 6432
- 2016-11-06T02:56:21-07:00
- Forum: Developers
- Topic: how to make a gif out of png images
- Replies: 0
- Views: 13772
how to make a gif out of png images
I am programig a aplication un c++ and I want make a gif out of png images: I used this command in a terminal : convert -delay 5 -loop 3 *.png -scale 480x240 a.gif; and this work ok. But I want to do the similar acction in c++ aplication. I try to do: I am using #include <Magick++.h> int main(int ...