using with VB.net 2013
Posted: 2016-03-16T11:18:03-07:00
Is there a list of instructions to use this in a VB.net Application. Right now I am using it as a shell and the DOS screen keeps popping up and it is very slow.
Use https://github.com/ImageMagick/ImageMagick/discussions instead.
https://imagemagick.com/discourse-server/
https://imagemagick.com/discourse-server/viewtopic.php?t=29302
Code: Select all
Module Module1
Sub main()
Dim objIM As Object
objIM = CreateObject(("ImageMagickObject.MagickImage.1"))
objIM.Convert("logo:", "logo.jpg")
End Sub
End Module