Questions tagged [abcpdf]

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.

Useful resources on WebSupergoo's site:

342 questions
0
votes
1 answer

ABCpdf7 Not Rendering Images using AddImageUrl

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…
ddango
  • 946
  • 1
  • 12
  • 25
0
votes
0 answers

Getting Error converting MS-Word to PDF using ABCpdf

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; …
Mortalus
  • 10,574
  • 11
  • 67
  • 117
0
votes
1 answer

Unable to render HTML. Unable to access URL. COM error 80070005. Access is denied

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…
monstro
  • 6,254
  • 10
  • 65
  • 111
0
votes
1 answer

Is there a way to create pdf packages/portfolios in abcpdf9?

I am looking to create pdf packages/portfolios using abcpdf9. What is the way to do it? I have just started exploring abcpdf9. Any sample codes/link??
Sameer
  • 3,124
  • 5
  • 30
  • 57
0
votes
0 answers

Remove page number

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?
0
votes
2 answers

AbcPdf Opacity AddImageHtml

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…
Hugo S. Mendes
  • 1,076
  • 11
  • 23
0
votes
1 answer

ABCPDF Converting Text PDF to Image PDF with correct layout

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…
malkassem
  • 1,937
  • 1
  • 20
  • 39
0
votes
0 answers

Remove a .png image from the HTML while rendering it to a .pdf using ABCPDF

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); …
Gautam
  • 1,728
  • 8
  • 32
  • 67
0
votes
0 answers

Printed date on PDF generated by ABCpdf

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…
user1147862
  • 4,096
  • 8
  • 36
  • 53
0
votes
1 answer

abc PDF generate a blank page on IIS

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…
0
votes
1 answer

Generate PDF from aspx page using abcpdf.net

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…
raje
  • 175
  • 3
  • 3
  • 11
0
votes
0 answers

ABCPdf library - parallel processing

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(); …
0
votes
1 answer

Background color of Text

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 …
user2043155
0
votes
1 answer

AbcPdf pdf to gif conversion with keeping transparency

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()) { …
alex
  • 80
  • 5
0
votes
2 answers

Object reference not set to an instance of an object for ABCpdf8

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…
Kalyan Basa
  • 307
  • 1
  • 3
  • 14