Hi,
Do is possible to make an animated gif from a few picturebox images, and then write gif to another picturebox?
I try like this, but is wrong way :(
Using collection As New MagickImageCollection()
collection.write(PictureBox3.Image)
Dario
Do is possible to make an animated gif from a few picturebox images, and then write gif to another picturebox?
I try like this, but is wrong way :(
Using collection As New MagickImageCollection()
' Add first image and set the animation delay to 100ms
collection.Add(PictureBox1.Image)
collection.Add(PictureBox2.Image)
...collection.write(PictureBox3.Image)
Dario