
I am trying to use an Excel VBA macro to create an image from scratch, not modify an existing image. I plan on looping through the entire image, setting each pixel's color depending on it's value in several equations within Excel.
I am running 64-bit Windows 7 Home and Excel 2007. The ImageMagickObject 1.0 Type Library dll is registered. The version of ImageMagick I downloaded is ImageMagick-6.7.1-7-Q16-windows-x64-dll.
Dim objMap As New MagickImage
t = objMap.Convert("C:\Mapping\Maps\Auto\base.png", "-size", xlim & "x" & ylim, "C:\Mapping\Maps\Auto\test.png")
I receive the error message: 'Run-time error '429': ActiveX component can't create object'
Any help in getting started would be great.
Thanks,
TMO