thanks for your help.
I tried to output the difference to image file
Code: Select all
convert c:\QG1.pdf null: c:\QG2.pdf -compose Difference -layers composite c:\diff.png
and then convert that image file to txt file with ("-transparent black") and ("sparse-color:")
Code: Select all
convert c:\diff.png -transparent white sparse-color c:\diff.txt
the below are some lines of the output files
Code: Select all
406,0: (65535,65535,65535,0) #FFFFFFFFFFFF0000 srgba(255,255,255,0)
407,0: (65535,65535,65535,0) #FFFFFFFFFFFF0000 srgba(255,255,255,0)
408,0: (65535,65535,65535,0) #FFFFFFFFFFFF0000 srgba(255,255,255,0)
409,0: (65535,65535,65535,0) #FFFFFFFFFFFF0000 srgba(255,255,255,0)
410,0: (65535,65535,65535,0) #FFFFFFFFFFFF0000 srgba(255,255,255,0)
411,0: (65535,65535,65535,0) #FFFFFFFFFFFF0000 srgba(255,255,255,0)
412,0: (65535,65535,65535,0) #FFFFFFFFFFFF0000 srgba(255,255,255,0)
413,0: (65535,65535,65535,0) #FFFFFFFFFFFF0000 srgba(255,255,255,0)
414,0: (65535,65535,65535,0) #FFFFFFFFFFFF0000 srgba(255,255,255,0)
415,0: (65535,65535,65535,0) #FFFFFFFFFFFF0000 srgba(255,255,255,0)
I think I make something wrong when using ("sparse-color:")...
thanks again for your help in advance, thanks!!