VBS: How to use Parenthesis to isolate affects of operators
Posted: 2012-11-21T11:18:20-07:00
Using parenthesis, \(Image1.jpg image2.jpg -operator1 -operator2\) to isolate the affect of operators to just specific image lists is explained here http://www.imagemagick.org/Usage/basics/#parenthesis. The parenthesis are escaped by "\' for unix, but for DOS it is not required.
How do you do this in VBS?
I tried enclosing enclosing everything in quotes separated by commas, including the "(" and ")", but it doesn't seem to work. For example:
Any ideas?
How do you do this in VBS?
I tried enclosing enclosing everything in quotes separated by commas, including the "(" and ")", but it doesn't seem to work. For example:
Code: Select all
objImageMagick_01.Convert "-background", "none", "-fill", "white", "-font", "Arial", "-pointsize", "90", "label:test", "(","+clone","-background","red","-shadow","200x3+0+0",")","+swap","-background","none","-layers","merge","+repage", "c:\test.png"