Page 1 of 1

problem in using magic collection

Posted: 2016-04-02T11:06:57-07:00
by wael
I have a sequance of photos (0.png, 1.png , 2.png....)
I try to convert them to an animated gif using vb.net. I found this code but nothing happens and the form close.. This is code


Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
Dim photos As String() = Directory.GetFiles(Application.StartupPath, "*.png")
Using collection As New MagickImageCollection()
Dim iarray As Integer = 0
For Each name As String In photos
collection.Add(name)
collection(iarray).AnimationDelay = 0
iarray += 1
Next

Dim settings As New QuantizeSettings()
settings.Colors = 256
collection.Quantize(settings)

collection.Optimize()
collection.Write("imagemagick.gif")

End Using
End Sub

Re: problem in using magic collection

Posted: 2016-04-02T12:22:45-07:00
by dlemstra
Your code looks correct. You don't see the file ImageMagick.gif in the folder of your executable?

Re: problem in using magic collection

Posted: 2016-04-02T21:59:14-07:00
by wael
No i didnt . and the form close

Re: problem in using magic collection

Posted: 2016-04-02T22:22:25-07:00
by wael
The steps i did :
Adding refrence Magick.NET-Q8-x64.dll for frame work 4.0 profile client
The names of photos are 0.png 1.png 2.png in debug folder