PDF generation is the process of creating a PDF document using various tools or libraries.

learn more… | top users | synonyms

0
votes
0answers
13 views

Return generated pdf using spring MVC

I am using Spring MVC .I have to write a service that would take input from the request body, add the data to the pdf and returns the pdf file to the browser. The pdf document is generated using ...
0
votes
1answer
17 views

Dropbox API - how to upload a PDF created with droidText?

How would you upload a PDF document (created using droidText) to dropbox (using the dropbox api)? I have read the documentation and understand the concept of creating/editing a standard file and ...
0
votes
0answers
44 views

How to save created PDF in document folder and merge in iOS

I am able to create single PDF page of photo captured with comment in iPHone. But I am not able to save the PDF file. My new PDF page is overlapping the first PDF page so I could not able to merge and ...
1
vote
0answers
10 views

Saving PDF using DDE Command

i am trying to open an htm file in adobe and save it as pdf file using dde commands i manged to save a word file but not pdf my code is like this filename varchar2(200) := 'c:\temp\text.htm'; ...
0
votes
1answer
14 views

Auto fitting a cell to the size of the content?

I'm new to tcpdf, creating my first document. I wonder if there is a way to fit the width of the cell automatically to the content. I currently only see options for fixed size, or taking the whole ...
0
votes
0answers
11 views

Cannot print pdf from Magento

This morning Magento has thrown us a nice curve ball, where we're unable to print invoices or credit memos No idea how to even begin to workout what the issue is - Has anyone seen this before or is ...
0
votes
1answer
29 views

Splice 2 PDF pages into one with Python

I'm trying to write a novel and I am trying to print out my own book prototypes. I have a PDF of the book. Now I want to merge the pages so that I can print it double-sided, fold it in half, and ...
0
votes
0answers
26 views

Highchart Inside Jquery Datatable-Export pdf Issue

I have created one table which is having one pie chart(Created using highchart) in each row. Also I am using jQuery datatable for creating table. I added table tools for getting options for save and ...
0
votes
0answers
38 views

In a PDF created from “merging” multiple PDFs using pdftk, is it possible to create link from PDF 1 to PDF 2 (or PDF 3) [closed]

I'm running into a lot of frustration here and I'm wondering if I am trying to do something that is impossible. I have to generate a PDF based on dynamic user input, so it's variable length. This ...
0
votes
1answer
11 views

Create two documents with TCPDF

I am generating long PDF document with TCPDF. What I want is to create two versions of this document - one with all pages and one with only 5 pages. But when I call Output whole document is destroyed ...
1
vote
2answers
32 views

How to hide text in an PDF file?

How can I add text to a pdf document, which is not visible? The document manipulation should be done in java. The usecase is to add further metadata to a document (in a proprietary format, about ...
0
votes
1answer
24 views

iTextSharp throw exception OutOfMemoryException with Larg file

I'm using iTextSharp (5.4.1.0) to merge set of PDF files into one file. In case of having larg file i got System.OutOfMemoryException at the line of closing document [document.Close();] Here is my ...
0
votes
0answers
16 views

Using ExportAsFixedFormat to Export Chosen Pages

I have a workbook that has a few different report sheets in it that are optionally filled and manipulated by a user. I am trying to export only the report pages to pdf, and I'd like them in one PDF ...
0
votes
0answers
40 views

Maintain CSS styling when converting HTML to PDF in ASP.NET_2013

Basically i am repeating a question already asked previously sometimes in 2009, now its 2013 and i am having the same problem.I did a lot of research on web but to no avail.I am sure that now the ...
-1
votes
0answers
18 views

Generate/print (hard copy) a form with blanks filled in with data from my app's database (PHP/MySql) [closed]

I need a way to generate/print (hard copy) a form with blanks filled in with data from my app's database (PHP/MySql). I have a PDF template of the form with writable fields. I've been researching ...
1
vote
2answers
42 views

XFA Form conversion to PDFA-1B

We have a requirement to convert XFA Form (Adobe LiveCycle Form) to PDF/A-1B. We're attempting to use iText 5.4.0 to parse the PDF, populate the XFA fields and then save the modified PDF back out. All ...
4
votes
1answer
40 views

Is it possible to Generate a Pdf Design by using Fpdf

I want to Generate a Pdf in Php Using FDPF. can we draw a table in fpdf. I want to Design a Table In the Image given Using FPDF.Is it Possible. I am new to fpdf Please help me. I want Above table ...
-1
votes
1answer
44 views

Is there any tools to generate html with js chart to pdf? [closed]

I use d3 js to visualization my data, and then I want to create a report which use the d3js chart and html generate a pdf file , any tools to use for this,such as python script or other tools
0
votes
0answers
44 views

css background is not working when convert template into pdf using rendering plugin

I am using rendering plugin to generate pdf in grails. I am using a background color which is prepared by css. code is here. #container #content #mainContent .block .backgroundStyle { ...
0
votes
1answer
44 views

How to implement “--print-media-type” with c#?

I am currently using wkhtmltopdf with c# to download my webpage as PDF format. However, I want the generated PDF shown to be using "print.css". Additional Details: I am using microsoft visual ...
0
votes
1answer
58 views

itextsharp output string with multiple rows

This is the reference pdf I am trying to replicate. http://www.depo.com.tw/asp/pdf/R_VW_PASAT_2.pdf I am working on the PDF catalog and I am trying to output something like the above. As you guys ...
-1
votes
1answer
43 views

PDF generation with Dompdf not working for large data [closed]

I am using Dom pdf to generate a pdf file. IF there are 1000 records in table format of html then it takes minimum 20 minutes to generate but most of the time it displaying the following error No ...
0
votes
1answer
25 views

Expandable list in pdf files

Can i create an expandable list in pdf files. Expandable list will be of the form : +Item1 +Item2 -Item3 -Subitem3.1 -Subitem3.2 +Item4 -Item5 -Subitem5.1 -Subitem5.2 -Subitem5.3 ...
0
votes
0answers
18 views

Creating cropped pdf documents

I use Powerpoint to create/assemble/annotate illustrations for a book I'm writing. The illustrations need to be in pdf form, ultimately, and they need to be cropped, so that the pdf page is just a ...
0
votes
0answers
28 views

Error while creating pdf file in php

i used this code to create pdf from posted data : header('Content-Type: application/pdf' ); header('Content-Disposition: filename=cert.pdf'); $date = date('F d,Y'); // open our template file ...
1
vote
2answers
36 views

Exception when attempting to generate variable-page PDF with iText

I'm trying to create an auto-filled PDF of a government payroll form, which involves the possibility of a variable number of pages. I'm currently storing each page as a Map, with the keys being the ...
2
votes
2answers
38 views

CFDocumentItem - change font size

I am creating a footer in a PDF document using <cfdocumentitem type="footer"> and it is working fine. Except that I cannot seem to control the font. I have tried <span>, <font face> ...
0
votes
1answer
42 views

How to merge PDFs with only PHP and keep internal and external links

How to merge PDFs with only PHP and keep internal and external links? Simple question but I can't find a solution. It is no access to shell so pdftk and so on is unacceptable. I'm looking for pure ...
0
votes
0answers
50 views

Getting data from the DB and converting it to PDF

I've a page which I want to generate a pdf file whenever someone adds data to the database. I have everything done but the pdf script. I Googled it, and I found a library called "FPDF". Downloaded ...
0
votes
0answers
41 views

Error printing iframe with Jspdf (Protocols must match)

I have this code to generate pdf with Jspdf: var pdfDoc = new jsPDF('p','in','letter') var verticalOffset = 0.5; var size = 10; var font = ['Times','Roman']; var wtext = 'Some text...'; var lines = ...
1
vote
1answer
39 views

How to set horizontal or vertical alignment Text in PDF?

i am generating a PDF, and i am outputting some text, e.g.: BT /F1 7 Tf 586 406 Td (Date Shipped:) Tj ET A quick primer on the PDF programming language: BT: begin text block /F1 7 Tf: ...
1
vote
2answers
33 views

.NET api for convert to PDF from various document formats

For a application I have to develop I have to create some functionality where the user can upload a document which will then be converted to a PDF file. I have to support as many as possible document ...
0
votes
1answer
46 views

Prevent copying pdf contents generated using iText

We have a web application which generates a report and saves it in pdf using iText. We want to prevent user from copying the contents from this file. I thought this can be achieved by converting pdf ...
0
votes
1answer
55 views

Why hyperlinks lost after merging PDF files using mPDF?

I have to merge some pdf files with hyperlinks inside. Merging with mPDF is fine, but there are no hyperlinks in output file! There are text only left. require_once('./mpdf/mpdf.php'); $mpdf = new ...
2
votes
1answer
54 views

How to write PDF data to a file first, when generating a PDF in Web View

My app keeps receiving a memory warning and subsequent crash when generating a PDF. Ive been advised to write my PDF to a file first, but no expansion was offered. This is my first time on ...
0
votes
1answer
32 views

Active Admin view to PDF

I'm starting to develop in Ruby on Rails recently, therefore I consider myself beginner. I'm testing the Active Admin gem ( http://activeadmin.info/ ) and I found a problem when export a view to PDF. ...
0
votes
0answers
14 views

RTF to PDF with Line Numbers

I didn't specify a server language in this question because if there's a way to do it I can pretty much have it run on a server that runs that particular language...so please let me know if you have ...
0
votes
0answers
15 views

Print to PDF option is missing in system dialogue box [closed]

Some time back I was on Windows Xp, And installing "Adobe Reader" did added an option of Print to PDF in the system's Print Dialogue box. Now I've upgraded to Windows 7 ultimate few months back and ...
4
votes
1answer
175 views

page-break-inside doesn't work in table cells with rowSpan?

I want to make PDF rendering of my big report table. But it seems that phantomjs doesn't support the rowSpan attribute. Here is the example: phantomjs rasterize.js ...
0
votes
0answers
100 views

Loading a Crystal Report generated .pdf file into a partial view not displaying

I am using ASP.NET MVC3 with Visual Studio 2010 Crystal Reports, and Jquery. I am having the strangest behavior that I have ever experienced when trying to load the .pdf file in a pop up window. ...
0
votes
2answers
63 views

PDF memory warning/crash

Despite research on Google, and on So and http://developer.apple.com/library/ios/#documentation/2ddrawing/conceptual/drawingprintingios/GeneratingPDF/GeneratingPDF.html. I still cant find an answer to ...
0
votes
1answer
33 views

IE ignores octet-stream - how to force download?

I'm using wkhtmltopdf to generate PDF files. This program accepts one of two ContentType values, 'application/pdf' and 'application/octet-stream'. I want the PDF files generated to be saved to the ...
1
vote
1answer
35 views

PDF files generated in Azure VM downloaded as 0 byte files

I'm generating PDF files using Prince XML in an Azure VM (by a web role) using C#, MVC3 and .NET 3.5. Action methods that are tagged with a PdfFilter() attribute forward the HTML to Prince XML; once ...
2
votes
2answers
77 views

Trying to open a .pdf file in an iframe

I am really having a hard time opening up certain .pdf files within an iframe HTML element. I can open some .pdf files in this iframe, but not all of them. The ones that I cannot open were created ...
0
votes
0answers
20 views

Add some code to my php script header to only allow one form to run it

I have a simple php script which runs behind an adobe pdf form. When the pdf form is completed, the user clicks submit. The PDF form is then saved to the server before being e-mailed to me. However, ...
-1
votes
0answers
16 views

viewing sRGB images using Foxit sdk dll

I am using Foxit sdk dll for a C++ application which reads a PDF document. The images in the PDF document are in sRGB format. When using Foxit reader, I have no problem seeing the images in the file, ...
0
votes
1answer
20 views

Font blurred/symbolized when exporting to pdf CR2008

I've got yet another problem with Crystal Reports 2008. This time, when I'm exporting to PDF from CR2008 from the company server, a font, Dax-regular, gets blurry. It's not completely illegible, but ...
-1
votes
0answers
39 views

Change PDF Version 1.5 or higher to 1.4 [closed]

Currently i want to change my PDF which has 1.5 Version into 1.4 but i don't find any solution can any one help me to solve this problem with example in PHP. Thanks
0
votes
0answers
39 views

Zoom to polygon in google maps and print it on pdf

This is the first time i am using google maps api and now I am facing this problem where, I have a map and I want to zoom dynamically to the polygon. Once I am done zooming I need to generate PDF file ...
0
votes
0answers
42 views

wkhtmltopdf - better cyrillic font rendering?

I'm trying to get better looking Cyrillic output with wkhtmltopdf. Any suggestions on how I can make the wkhtmltopdf output look more like how it looks in Chrome? In particular, I'd like to get the ...

1 2 3 4 5 48