I am trying to turn on logging and debugging for imageMagick using the com object.
My call:
Code: Select all
output = imageMagick.Convert( "-debug", "all","-size=185x","-background=transparent","-fill=black","-stroke=none","-font=" & descFont,"-pointsize=14","gravity=center","caption:"&couponTitle,descImg)
Code: Select all
<logmap>
<log events="All"/>
<log output="file"/>
<log filename="c:\magic.log"/>
<log generations="3"/>
<log limit="2000"/>
<log format="%t %r %u %v %d %c[%p]: %m/%f/%l/%d\n %e"/>
</logmap>
Thanks!