ABCpdf is WebSupergoo's software component for generating and manipulating PDF documents dynamically on Windows based systems, supporting the Microsoft .NET Framework and ASP/COM.
Fairly exotic it seems to me. We recently upgraded/migrated from Windows Server 2003 to 2008, and now it seems that images cannot be rendered when using Doc.AddImageUrl(). (when the pdf is saved, the images appear at the correct dimensions, but the…
I'm trying to convert a Doc file into a PDF usin ABCpdf:
using (Doc objDoc = new Doc())
using (XReadOptions xr = new XReadOptions())
{
xr.ReadModule = ReadModuleType.MSOffice;
…
I am getting this exception thrown by the ABCpdf component:
When deployed to POC server (Windows 2008, 32 bit, IIS7 32 bit, Windows Authentication), the component throws an exception when performing this operation: pdfDoc.AddImageUrl(uri);
Unable…
I am using AbcPdf to convert pdf files into html pages.
It works well but the conversion process adds page number in the header of the pages.
Can I remove them?
I am using AbcPdf and I am getting some difficute to use Alpha/Opacity style to be
rendered in .AddImageHtml() method.
This need to be added as stylesheet because I am creating the pdf from my html.
Some images has opacity, but not all, so, I need…
I am trying to convert a text pdf to image pdf, and for that I found the following article:
ABCpdf convert text to image
So I took the code an produced the following code:
WebSupergoo.ABCpdf9.Doc firstDoc = new…
I am using ABCPDF and have a issue where I have hidden a image in my .html page.. but that image appears on the pdf when I render that HTML page to PDF from HTML using the following code
pageID = DR.AddImageHtml(imageURL);
…
I generate PDFs from HTML with ABCpdf (.Net, version 9). When the PDF gets printed (which can be many days after it is generated), the date that it is being printed needs to be shown in the footer on the printed pages.
How can I make this happen? I…
I am creating an PDF from HTML using ABC PDF 8.0, it works well on my local end but generate a blank page on IIS, I already down grade IE, and provide the all permission to folder. When I tried to generate the PDF through any external link like…
I have one web page url and i want to convert it to PDF.I used abcpdf.net in my webpage and its working fine in local host but its not working in server.I have installed abcpdf.net 6.1 version and added abcpdf.dll in my bin folder.my server is…
Have any of you tried to convert *.docx file into *.pdf using ABCPdf library in parallel loop?
Here is my method that is called in Parallel.ForEach loop
public void ConvertDocxToPdf(string fileIn, string fileOut)
{
var theDoc = new Doc();
…
How can i set background color of text if i am using addhtml method only. as add HTML method is only supporting number of HTML tags is there any workaround. This is what i have done
theDoc.Rect.String = "35 725 560 765";//35 745 560 765
…
I need to convert PDF into GIF with transparency. I've found some example of code on the official site, but result doesn't match expected. The common issue is transparency loosing.
The code I tried below:
using (var doc = new Doc()) {
…
Thanks in advance.
I have ran into an issue with ABCpdf. I continuously receive the following exception, when I try to add image URL to pdf. This was working fine some days back but its not working now.
WebSupergoo.ABCpdf8.Internal.PDFException…