pdf

Creating a new Pdf by Merging Pdf documents using TCPDF [php]

How can I create a new document using other pdfs that I'm generating? I have methods to create some documents, and I want to merge them all in a big pdf, how can I do that with TCPDF? I do not want to use other libs. ...

What is the best way to generate pdf from c#?

We are looking at creating a custom PDF document for users using C#. The windows app will ask certain questions to the user. Based on the questionnaire responses certain sections are removed / added. The PDF will be in a 2 column layout with fair amount of graphics etc. What is the best solution to create this PDF based on user response...

How to increase spacing between paragraphs in Crystal Reports PDF

I have a report that I'm exporting to PDF using the VS2008 version of Crystal Reports. There is a field that displays a product description that contains HTML data pulled from my database so I've set Text Interpretation to HTML for the field. The text displays fine with all the appropriate HTML formatting, however, there is only a singl...

Embedded PDF overlapping menu in FireFox

I'm pretty much at my wits end with this issue. I've been searching for a while and though I find many posts with people having the same issue as me, I'm not finding any answers or solutions to these posts. The problem is this: We have a PDF viewer embedded on a report site. The user has the option to view the PDF in the browswer or to...

Opening a pdf in .NET

In the application we are working on we are trying to implement Help. We have a help pdf document and for the moment it has been deemed acceptable that when users click the help button it just opens the pdf. The application is a desktop app and the pdf file needs to be included in the install somehow and installed on the local machine. ...

is there a way to generate pdf containing non-ascii symbols with pisa from django template?

Hi. i'm trying to generate a pdf from template using this snippet: def write_pdf(template_src, context_dict): template = get_template(template_src) context = Context(context_dict) html = template.render(context) result = StringIO.StringIO() pdf = pisa.pisaDocument(StringIO.StringIO(html.encode("UTF-8")), result) ...

How can I convert PDF to HTML?

What good libraries are there, in any common language, for converting PDF to HTML? ...

How to combine images inside pdf by programme?

Suppose there are two pdf files,each contains a single image. How to combine them from left to right? If there is no way to do in with PHP,you can do it in other languages as well. ...

Merging 2 PDF in .Net

Hi, I have a windows application in which I have a static PDF file(File1). Another PDF file(File2) is created on the runtime. I need to add the contents of the File1 to File2 as a new page of File2. Is there a method in .Net to do this without using any external libraries or softwares. Regards, Abhishek Jain ...

pdf report view inside browser

Hi fellow programmer I have created this report using BIRT and phpjavabridge <?php header("Content-type: application/pdf"); header("Content-Disposition: inline; filename=downloaded.pdf"); require_once("http://127.0.0.1:8080/JavaBridge/java/Java.inc"); header("Content-type: text/html"); // the report file to render $myReport = "tes...

JPG to PDF Convertor in C#

I would like to convert from JPG to PDF, I've checked out ImageMagickNET, but it is far too complex for what I am after doing, it needs to be simple. Any pointers would be welcomed ...

Dynamic PDF features

I've been asked to write a program which generates reports in the form of PDF files. There are two main dynamic features which have been asked for, which I'm not sure are even possible: 1) The report contains a table with several columns. Users should be able to click on the column header to sort the table rows by the values in that c...

Open source PDF renderer for .NET?

Is there an open source .NET library that can render PDFs to images (for server-side processing)? I know of PDFsharp, AFAIK it can only create and process PDFs, not render them. ...

Delphi - How to save multiple Rave reports to one pdf file?

I have multiple rave reports(projects) in the project(the delphi project) and I want to save them all in one pdf file. How can I do it? ...

Best pdf generator in PHP , mpdf or fpdf?

hi all, Which is th best pdf generator for php, i know some opensources libs mpdf and fpdf.. Thanx in advance ...

Pdf gets mangled when accessing subversion repository via apache webdav

I am running a subversion server with access via http using webdav. I have noticed that when I access the repository with a browser, sometimes the pdf files in the repository show up as plain text (as if you viewed the pdf with a text editor like emacs, vim, or notepad) instead of being downloaded, or opened with some pdf reader. If you ...

Save RDLC reports as PDF programaticaly

I have a report that I need to run multiple times and save as PDFs. I am currently generating the report as a PDF programatically but want to save the reports without the user having to choose the save option manually each time. The code I use to render a single report as a PDF is: Dim warnings As Microsoft.Reporting.WebForms.Warn...

How can I make a pdf non-printable programmatically?

How can I make a PDF non-printable programmatically using .net? ...

Converting PDF into workable text using C#

Is there a library that has a class to extract the text from a pdf file in c#.net? I've tried a few but documentation is terrible, so I haven't been able to get it off the ground. Also if it provides a class to extract images that would be a plus. Any suggestions? Thx in advance. Also I need to be able to implement it into an existing a...

How to use ghostscript to convert PDF to PDF/A or PDF/X?

Is there a way to use ghostscript to convert PDF to PDF/A or PDF/X? I know it can be used to convert PDF to images, but I don't know if it can be used to convert PDF/A. What parameters should I use? ...