I'm trying to use ABCPDF.net 8 to create a pdf from html content.
When using the method AddHtml, this works fine.
However, I need to take in the styles too, so I need to use AddImageHtml. But using this method causes the w3wp process to throw an exception. When I debug through the code with Reflector the exception seems to come at different places, making me think it is maybe some kind of memory thing... (nice and specific, I know).
My abcpdf code is as simple as...
global::WebSupergoo.ABCpdf8.Doc doc = new WebSupergoo.ABCpdf8.Doc();
doc.AddImageHtml(test);
...and I'm doing this in the page render.
Any one had any experience of abcpdf throwing generic exceptions in the w3wp process?