pdf

Problem with DOMPDF and Kohana 3

I have used DOMPDF many times before successfully, however outside of the Kohana Framework. I created a module for DOMPDF and called it simply pdf. Here is it's code. class Pdf { private $domPdfInstance; public function __construct($html) { if ( ! class_exists('DOMPDF', FALSE)) { // Load DOMPDF ...

What is the maximum number of pages tha apache fop can generate ?

Hi I was working with apache fop and when the number of pages exceeds about 130 pages ,it could not generate the pdf .... Is there any limit to page number or the length of xml file... Exception in thread "main" java.lang.OutOfMemoryError: Java heap space at java.io.BufferedReader.(BufferedReader.java:80) ...

controlling PDF inside safari using javascript

Please help about controlling PDFs through JavaScript loaded inside Safari. Safari uses a PDF plugin of its own something exclusive to Safari and not present in other webkit based browsers like Chrome. Any of the or js commands that would work with the Adobe's plugin don't seem to work. Any help / pointers would be appreciated. -nee...

PDF text search and split library

I am look for a server side PDF library (or command line tool) which can: split a multi-page PDF file into individual PDF files, based on a search result of the PDF file content Examples: Search "Page ???" pattern in text and split the big PDF into 001.pdf, 002,pdf, ... ???.pdf A server program will scan the PDF, look for the sea...

Determine fonts used in postscript (.ps) file

Given a postscript file that has the following header %!PS-Adobe-3.0 I would like to list all fonts used in the file. The output does not have to be perfect, but I need to make sure I get all references to any font being used. I am aware there are different types of fonts, and that a font may or may not be embedded in the postscript f...

Creating a PDF from a RDLC Report in the Background

I am running a month-end process and want to have it automatically create some of the reports that need to be created at that time. I am using rdlc reports. Is there a way to automatically create a PDF from a RDLC report in the background? ...

A java library for converting xml/html to pdf

Hi All, I'm looking for an open source utility that will allow me to generate .pdfs from fairly simple xml or html. There may be linked images as well as plain text. There will not be css or javascript. Ideally I'd like the generated pdf to be parsable, i.e. so that the content is not an image. Googling around I see there's IText and Pd...

TCPDF remote image loading problem

Hi, Im trying to load a remote image into a pdf generated by tcpdf however I can't seem to get it to work? The rest of the pdf loads fine and it looks like to trying to retrieve the image however it just does print to the page? The code I am using is: $pdf->Image("http://media.domain.com/logo.jpg", 0, 0, 100, 150, 'JPEG', '', 'T', tr...

Seeking reporting or templating tool to generate large formatted PDF reports from dataset

Say I have some data in MySQL or a big ole CSV file. I also have a report. It's a PDF, call it 100 pages long. I need to generate variations on this PDF for slices of the data. More specific example: I have a CSV file with each StackOverflow user in a row and each column contains various statistics about that user. I have a report ...

How to generate table of contents with prawn?

Is there an easy way to generate table of contents with links to corresponding pages? ...

Does grep work properly on pdf files?

Is it possible to search multiple pdf files using the 'grep' command. It doesn't seem to work, how do people search content on multiple pdf files? ...

AlivePDF generate pdf with grid, text not showing

Adding text to a grid in flex adding the grid to a pdf with some other elements on there as well. text is not showing up in some cases. I've tested myself silly on the computers i own but there doesnt seem to be a problem. However, the person i made this for keeps saying text doesnt show up. I've seen the results of his instance of thi...

Extract images from PDF without resampling, in python?

How might one extract all images from a pdf document, at native resolution and format? (Meaning extract tiff as tiff, jpeg as jpeg, etc. and without resampling). Layout is unimportant, I don't care were the source image is located on the page. I'm using python 2.6 but can use 3.x if required. thanks Summarized Responses There is a JP...

Workaround for floats in DOMPDF

DOMPDF does not support floats. However I am listing many tables, and they are mainly key & value pairs. I would like 2 of these tables to appear side by side. i.e. if I could use floats HTML <table id="stuff"> ... </table> <table id="other-stuff"> ... </table> CSS table#stuff { float: left; } table#other-stuff { float: ...

Itextsharp resize(as in zoom-out, not crop, not compress) pdf from 210x297 to 197x279

How do i resize an existing pdf to another format. I don't want to crop the pdf, it must be zoomed-out. (for printing issues) When i try this it doesn't work because the pdf is cropped instead of zoomed document.SetPageSize(new Rectangle(558.40f, 790.83f)); // 558.40f == 197mm ...

Find Tables in PDF's

Hello, Are there any tools or tricks how to automatically extract tables from pdfs. Are there any C# libraries that could do that? Or do you maybe know other methods how this could be handled? Thank you very much ...

Is there an easy to use PHP PDF library with unicode support?

I tried dompdf. It's a lot easier to use than other libraries I've tried but it doesn't have unicode support. Or rather, it has unicode support but requires another library called PDFLib ($1k version). So I am just wondering if anybody has ever stumbled upon or used any PHP pdf library which is both easy to use and has unicode support....

PDF files with XML files attached

HI All, I have a PDF file with a xml attached, i need to parse the xml file. Does anyone knows how i do that? I´m using C#. Thanks in advance. ...

Rails link to PDF version of show.html.erb

Hi Everyone, I have created a pdf version of our rails application using the Prawn plugin, the page in question is part of the Kase model - the link to the kase is /kases/1 and the link to the pdf version is /kases/1.pdf. How can I add a link within the show.html.erb to the PDF file so whichever page is being viewed it updates the URL...

Portion from CGPDFPage + Scale (zoom)

I wanna take a rect from CGPDFPage (the portion of image around the user's touch point(x,y)) and scale it by a scaleFactor (ie 2x). Below the code I've used to get CGPDFPage's rect. The problem with it is the scaleFactor support. The idea is: 1) pageRect size is pageRect.size *2 2) myThumbRect (the region to zoom) become resultImageSize/...