Hello,
Can anybody help me how to execute below command using ImageMagickObject in vbscript
composite image1.jpg image2.jpg -compose difference compare.jpg
for eg. Set img = CreateObject("ImageMagickObject.MagickImage.1")
msgs = img.Composite()
What will the parameter in above Composite method?
Thanks in advance
How to execute composite command using ImageMagickObject
-
- Posts: 1
- Joined: 2014-04-20T00:53:58-07:00
- Authentication code: 6789
Re: How to execute composite command using ImageMagickObjec
You can use below code for composite
msgs = img.Composite("image1.jpg", "image2.jpg", "-compose", "difference", "compare.jpg")
msgs = img.Composite("image1.jpg", "image2.jpg", "-compose", "difference", "compare.jpg")