Skeldave
Skeldave
Hi - I'm having the same problem. Did this ever get resolved? Thanks,
EDIT: This is what Ive got: ``` GlobalConfig gc = new GlobalConfig(); gc.SetOutputFile(url); gc.SetOutputFormat(GlobalConfig.OutputFormat.Pdf); SynchronizedPechkin sc = new SynchronizedPechkin(gc); sc.Finished += OnScFinished; sc.Error += OnScError; ObjectConfig oc = new ObjectConfig();...
try this: ``` SynchronizedPechkin sc = new SynchronizedPechkin(new GlobalConfig()); ObjectConfig oc = new ObjectConfig(); oc.SetLoadImages(true); oc.SetPrintBackground(true); oc.SetScreenMediaType(true); sc.Convert(oc, ps); ```