As I could find some posts on the internet that others have been having problems with this, but none with working solutions I thought I would share the info.
First I created a simple test script, based on the ArrayTest.vbs sample.
TestImageMagic.vbs:-
Code: Select all
Dim objIM
Dim myimage(1)
Set objIM = CreateObject("ImageMagickObject.MagickImage.1")
MsgBox objIM.Convert("rose:", "myimage.jpg")
myimage(0) = "JPEG:"
MsgBox objIM.Convert("logo:", myimage)
MsgBox objIM.Convert(myimage, "myimage2.jpg")
Then using TestImageMagicx64.bat file to test with wscript or cscript:-
Code: Select all
@echo
C:
\Windows\System32\cscript.exe C:\Users\Mark\Desktop\TestImageMagic.vbs
Pause
Using similar TestImageMagic.bat to test the 32 bit version of ImageMagickObject via 32 bit version of wscript and cscript:-
Code: Select all
@echo
C:
\Windows\SysWOW64\cscript.exe C:\Users\Mark\Desktop\TestImageMagic.vbs
Pause
(Make sure that the first ImageMagick path in the windows environment variable path is pointing to the 32 bit version, as the path environment variable is used to find the object dll.)
I’ll leave the problem with 64 bit version of ImageMagickObject for now, as I plan to use ImageMagickObject from Excel 2010, 32 bit version, and as posted earlier by spieler, this will only work with the 32 bit version of ImageMagickObject.
I created an Excel VBA test similar to the above script in a standard Excel VBA module:-
Code: Select all
Option Explicit
Sub TestImageMagic()
Dim objIM ' As ImageMagickObject.MagickImage ' Causes error
Dim myimage(1)
Set objIM = CreateObject("ImageMagickObject.MagickImage.1")
MsgBox objIM.Convert("rose:", " C:\Users\Mark\Desktop\ myimage.jpg")
myimage(0) = "JPEG:"
MsgBox objIM.Convert("logo:", myimage)
MsgBox objIM.Convert(myimage, " C:\Users\Mark\Desktop\ myimage2.jpg")
End Sub
Using the VBA debug and watch window shows that although there is no error generated when creating the blob, the array myimage now only has two empty variants. Prior to this it showed myimage(0)="JPEG:" and myimage(1)=Empty.
In order to see what was going wrong, I installed ImageMagick from source and compiled for Win32 in debug. This caused some additional problem with an exception thrown, but by using retry and continue I was able to get to the point where the convert function was completed and the output array appeared to correctly hold the blob, but on return to VBA the array was empty again as above.
This seems to show that excel is not handling the return by reference to the myimage array, which is probably to be expected when declared as a static array using "Dim myimage(1)", as this would also not be expected to work in a call by reference to a VBA function or sub.
Although this seems to be OK for VBscript it is not handled by VBA.
To avoid this problem I made a copy of the array in a variant and then pass the variant to ImageMagickObject:-
Code: Select all
Option Explicit
Sub TestImageMagic()
Dim objIM
Dim myimage(1)
Dim myarray As Variant
Set objIM = CreateObject("ImageMagickObject.MagickImage.1")
MsgBox objIM.Convert("rose:", "C:\Users\Mark\Desktop\myimage.jpg")
myimage(0) = "JPEG:"
myarray = myimage
MsgBox objIM.Convert("logo:", myarray)
MsgBox objIM.Convert(myarray, "C:\Users\Mark\Desktop\myimage2.jpg")
End Sub
After calling convert, myarray changed from an array of two variants to a byte array containing the blob.
It also no longer includes “JPEG:”, but it seems this is not required in order to use the blob to create “myimage2.jpg”.
A simpler version which still seems to work correctly in Excel VBA:-
Code: Select all
Option Explicit
Sub TestImageMagic()
Dim objIM As Object ' As ImageMagickObject.MagickImage ' Causes error
Dim myimage As Variant
Set objIM = CreateObject("ImageMagickObject.MagickImage.1")
MsgBox objIM.Convert("rose:", "C:\Users\Mark\Desktop\myimage.jpg")
myimage = Array("JPEG:")
MsgBox objIM.Convert("logo:", myimage)
MsgBox objIM.Convert(myimage, "C:\Users\Mark\Desktop\myimage2.jpg")
End Sub
Code: Select all
Dim objIM
Set objIM = CreateObject("ImageMagickObject.MagickImage.1")
msgbox objIM.Convert("rose:", "myimage.jpg")
myimage = Array("JPEG:")
msgbox objIM.Convert("logo:", myimage)
msgbox objIM.Convert(myimage, "myimage2.jpg")
1). The variant used to return the blob needs to be a variant array, even if it only has one element, in order for ImageMagickObject to recognize this as a reference to save the blob. It can be created by setting a variant equal to a static array or using the Array function.
2). Use regsvr32 to register the ImageMagickObject.dll. (Use cmd.exe, run as administrator.)
3). Ensure the path environment variable is set to the path of ImageMagickObject.dll, and that if you have both 64 and 32 bit versions installed then the 32 bit version is the earliest included in path. Tip – install the 64 bit version first and then install the 32 bit version last, but you might need to specify the full path to continue using 64 bit convert.exe and other command line utilities.
4). From Excel VBA, Tools, References, make sure "ImageMagickObject 1.0 Type Library" is shown as checked, and make sure this is the 32 bit version for 32 bit versions of Excel.
5). Declare the ImageMagickObject as type Object in Excel VBA and not ImageMagickObject.MagickImage.
Note that 2 & 3 should already be done, by the install from binaries, but included in case you are installing from source.
Remaining questions and issues.
1). I’ve tested with Excel 2010 32 bit version using 32 bit ImageMagickObject on 64 bit Windows 8.1, I can also test with Excel 2007 32 bit on 64 bit Win7 and I’ll add to this post with results. If anyone is successful with other combinations it might be helpful to others to add replies to this post.
2). 64 bit install of ImageMagickObject does not seem to work from VBscript, so suspect it will also not work from 64 bit Excel VBA. If anyone has this working or can confirm it isn’t working then I’d also be interested to hear about it.
3). If I use "Dim objIM As ImageMagickObject.MagickImage" then ImageMagick still throws an error due to the input safearray does not match the expected type, so I suspect there is still some problem with the way Excel VBA is interpreting the object definition or in the way this is declared by ImageMagickObject. I may take another look at this later but it's not stopping me from using blobs in my project.