using imagemagick in vbs

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
adelina
Posts: 18
Joined: 2011-08-03T04:01:45-07:00
Authentication code: 8675308

using imagemagick in vbs

Post by adelina »

hi,
i want to use this comand : compare -metric RMSE file.tif file2.tif diff.tif 2> out.txt in vbs and i used this code:
set img= CreateObject("ImageMagickObject.MagickImage.1")
img.Compare "-metric", "RMSE", location & File1 & ."tif", location & File2 & ."tif",location & File1 & ."_" & File2 & ".tif", ">> out.txt"
But it doesn't work.

thanks
Post Reply