Remove or hide PDF layer using ABCPdf?
Is is possible to remove or hide a layer from a PDF using ABCPdf or another framework? ...
Is is possible to remove or hide a layer from a PDF using ABCPdf or another framework? ...
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 IE8 missing image x shows up). If I understand correctly, ABCpdf uses IE rendering intern...
I have the binary for several pdf files stored in a collection of Byte arrays. My goal is to concatenate them into a single .pdf file using abcpdf, then stream that newly created file to the Response object on a page of an ASP.Net website. Had been doing it like this: BEGIN LOOP ... 'Create a new Doc Dim doc As Doc = New Doc 'Read t...
I need to be able to export PDF's that I am creating to JPEG, so that users can have a screenshot/thumbnail of the end product, which is faster than opening the whole PDF. I am running this on an ASP.NET website running in Medium Trust in the Rackspace Mosso Cloud. I have yet to find a library that will either work in Medium trust, or ...
how can i download html file as pdf using abcpdf in asp.net,c# ...
<meta http-equiv="X-UA-Compatible" content="IE=8"> or <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8"> With this set my EPS files are not rendered in ABCpdf, but set to EmulateIE7 and they work fine. I know EPS aren't a standard web format but they are embedded into a PDF using a bit of ABCpdf magic. Because IE8 isn't ...
Hi I am usign ABCPDF, and simply cannot obtain title etc of the document programmatically ? Cannot seemt to find any good examples on websupergoo site! Must be a simple issue Doc d = new Doc(); d.Read(path); var y = d.GetInfo(d.Root, "/Title:Text"); var x = d.GetInfo(d.Root, "/publicfilePath:Text"); ...
Hello everyone, I'm using the AbcPdf library to transform an aspx page to a pdf object. I have achieved my goal, but I have a problem. The data in the aspx page is a set of Tables, and they are dynamic, I mean, it can be 2 tables, or 30 or whatever. I have achieved that when the number of tables is bigger than one page, the library crea...
Using ABCPDF, currently generating pdf's with 1mb files. When we alter the pdf in acrobat pro, and simply change the image quality this drops the size to 100K. I have looked at the documentation for ABCPDF however I cannot find a simple example of dropping the image quality prior to saving the document, hence getting a smaller pdf. ...
Hi, I am trying to use the AbcPdf .net component (version 7) to process some PDFs and generate metadata. I was wondering if there is anyway to list all the tags in a pdf document? As an example of a tagged pdf, I am using this file here Are there any other components or tools available for listing or extracting pdf tags? Thanks in adva...
Hello I am trying to get a PDF generated by abcPDF from html output to print the first three pages in portrait and then switch the fourth page to landscape. I have been able to get the html to switch into landscape for the fourth page by applying this class to a div that is the 4th page: .PageLandscape { width="100%"; height=...