Click here to Skip to main content
15,886,030 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi...so i using this command "
VB
dim i
set objArgs = WScript.Arguments

set img = CreateObject("ImageMagickObject.MagickImage.1")
do

para1=inputbox ("dati parametrul 1")
Wscript.Echo "Primul argument:" + para1

para2=inputbox ("dati parametrul 2")
Wscript.Echo "Al doilea parametru:" + para2

msgs = img.Compare("-metric","RMSE", "-subimage-search",para1, para2,"2", ">", "pararez.txt")
i= i+1
loop while(i < objArgs.length )

and I want to put in "pararez.txt" the difference between those to pictures ,like it does in imagemagick ,but instead of that ,it puts me all the pixels.How do i fix it?
or has vbscript a different command to write in .txt? the command "2>pararez.txt" is from imagemagick and I thought tha it may work in vbscript too,but it dosen't! this is what i get :

# ImageMagick pixel enumeration: 507,430,255,rgba
0,0: (253,253,248,255) #FDFDF8 rgba(253,253,248,1)
1,0: (253,253,248,255) #FDFDF8 rgba(253,253,248,1)
2,0: (253,253,248,255) #FDFDF8 rgba(253,253,248,1)
3,0: (253,253,248,255) #FDFDF8 rgba(253,253,248,1)
4,0: (253,253,248,255) #FDFDF8 rgba(253,253,248,1)
5,0: (253,253,248,255) #FDFDF8 rgba(253,253,248,1)
........
Posted
Updated 18-Aug-11 6:25am
v2

1 solution

It's extremely unlikely anone here is going to have any experience with that library.

Your best source of information is going to be the ImageMagik Discourse Server, found here[^].
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900