Luke Baughan

Results 10 comments of Luke Baughan

@mb280sel1985 - I found this issue when I was in debug mode with the hanging and having to stop the development server (IIS Express in my case) before it would...

@Kons & @Noodle56 Thanks for putting your code here - for some reason I was having the 100% issue even with the syncronised pechkin but used Noodles C# port of...

@mattstermiller yeah i've seen it lock again today, I'll give your simplified version a go tomorrow ;o) Thanks for the update! We've also implemented a more severe solution by writing...

This has been solved before by setting properties the "traditional" way so this: byte[ ] buf = sc.Convert( new ObjectConfig( ).SetPrintBackground( true ), htmlText.Text ); becomes: ObjectConfig oc = new...

There are some issues with fluent notation try changing your code from this: config.SetAllowLocalContent(true) .SetPrintBackground(true); to this (Do this anywhere you've used fluent notation): config.SetAllowLocalContent(true); config.SetPrintBackground(true);

Will do when I'm back in the office tomorrow - thanks for taking the time to look into this, very much appreciated.

Hey @gmanny thanks for taking the time to look into this - OK I tried the examples and sure enough they worked - only differences I can see with URLs...

Ah yes, no need to write a test for that - it pushes the HTML to screen and then renders the PDF for reporting purposes ;o) HTML is rendering perfectly...

Thanks so much for taking this on board ;o) No worries, the work around means its no a massive problem time wise (always more than one way to skin a...

@enKor You can set image quality with .SetMaxImageDpi() and .SetImageQuality() options in GlobalConfig. You can enable local resources with .SetAllowLocalContent(true) in ObjectConfig. Taken from a @gmanny answer to a similar...