Tool for converting HTML to PDF. It supports HTML 3.2 and HTML 4.0 with CSS. It allows users to place HTML content anywhere on PDF pages.
Questions tagged [abcpdf9]
31 questions
4
votes
4 answers
Unable to load DLL ‘ABCpdf9-64.dll’. The specified module could not be found (Exception from HRESULT: 0x8007007E)
I have installed abcPDF 9.1.1.5 version on my local machine and everything works perfectly.
but I deploy code to windows server 2008 R2 machine i get this error.
any one guide me what could be the issue.
I have already explored following articles…

UMAR-MOBITSOLUTIONS
- 77,236
- 95
- 209
- 278
3
votes
2 answers
ABCpdf copy header and footer
I'm using ABCpdf 9.1 x64 .Net with Coldfusion to create PDF's based on HTML content. Each PDF document has a different header and footer which are generated as HTML with some Coldfusion code. The header is identical for every page where the footer…

android
- 652
- 9
- 28
2
votes
1 answer
Align text to the right using AbcPdf 9
I am using abcpdf 9.
Is there a way to align text to the right.
At the moment I have the following
theDoc.Rect.Width = 100;
theDoc.Rect.Height = 21;
theDoc.Rect.Position(490, 808);
theDoc.FontSize = 10;
theDoc.AddText($"Some text");
This will…

TheAlbear
- 5,507
- 8
- 51
- 84
2
votes
1 answer
ABCpdf only rendering first page
When I try to save each page as GIF using ABCpdf, only the first page is saved.
For example: I have a PDF that has 3 pages. I use ABCpdf to render each page to a stream, which is saved to disk. When I open the files in my destination folder, all 3…

Shiva D
- 31
- 6
1
vote
1 answer
Using ABCPDF draw another doc as an image with rounded corners
I find ABCPDF is very capable. However, so far I had not managed to find a way to draw one PDF into another with rounded corners - until now. But, the approach I discovered depends on getting the correct PDF object id for the inserted PDF stream,…

Vanquished Wombat
- 9,075
- 5
- 28
- 67
1
vote
2 answers
Could not find ABCChrome, WebSupergoo.ABCpdf11.Internal.PDFException
For some reason I can't figure out what is causing this error with ABCpdf. We are upgrading from v9 to v11. We have tried including the dlls and just a reference but neither appear to be working.
The line that the error occurs is on…

Grim
- 2,398
- 4
- 35
- 54
1
vote
2 answers
Fonts will not embed with ABCpdf
We are using Proxima Nova fonts (specifically, Proxima Nova Condensed regular) in our MVC .NET project, but they will not embed properly in the PDF output. When looking at the PDF properties, I see "ProximaNovaCond-Regular (Embedded)" listed, and…

pWEN
- 15
- 7
1
vote
0 answers
ABCPdf Can't load image from project
I am currently having a problem with loading images from my .net MVC project onto a PDF with ABCPdf. I have made sure that the path to the image is correct.
This is the line that adds it to the PDF:
theDoc.AddImageFile();
The error…

Weava
- 496
- 2
- 13
1
vote
1 answer
How to load external image while converting HTML to PDF from abcpdf
We are using abcpdf(license version) for converting html to pdf.
The function we are using of it is - AddImageHtml
We are passing the html in string form to this function as
"

Oxygen
- 831
- 4
- 17
- 42
1
vote
1 answer
Setting proxy for IIS account for ABCPDF
I'm currently using ABCPDF to transform HTML into PDF. We have a proxy and since ABCPDF internally calls MSIE under the AppPools user account, NetworkService in my case, the proxy has not been set.
I have tried to use Microsofts BITSAdmin tool to…

RSquared
- 1,168
- 9
- 19
1
vote
1 answer
HtmlOption.Engine with type EngineType.Gecko generate only first page
I want to export html to pdf, document is generated but only first page
Doc theDoc = new Doc();
theDoc.HtmlOptions.UseScript = true;
theDoc.HtmlOptions.Media = MediaType.Print;
theDoc.HtmlOptions.InitialWidth = 1048;
…

Alex
- 8,908
- 28
- 103
- 157
1
vote
1 answer
ABCpdf not applying inline css styles
In my aspx page I have this script with the following css
In the browser the page is loads ok, div with class hide-val is…

Alex
- 8,908
- 28
- 103
- 157
1
vote
3 answers
ABCpdf - dont understand what is needed to run the project
new job, ASP.NET project, no nuget.
Without running installation of ABCpdf, is it possible just to add DLLs to the project and use it?
What is the difference between ABCpdf.dll, ABCpdf-32.dll, ABCpdf-64.dll?
How the application knows which ones to…

monstro
- 6,254
- 10
- 65
- 111
1
vote
1 answer
How to get Abcpdf to render content over SSL with Self Signed Certificate
Our Dev/QA environments use self signed ssl certificates and we are trialing Abcpdf to convert html to pdf but the site where the html is rendered is run under a self signed SSL certificate.
Doc theDoc = new Doc();
…

chrisp_68
- 1,731
- 23
- 41
1
vote
1 answer
ABCpdf .net does not render CMYK images properly
I builded an application to automatically generate PDF, taking data from a DB, but recently the customer noticed that the images were rendered different, using RGB color profile, instead of CMYK.
So I tried to build a simple test code, in order to…

bepi_roggiuzza
- 195
- 1
- 3
- 12