pdf

Split Big Image in PDF created using iText

I have a PDF which displays a dynamic image (Chart created with JFreeChart). The chart is dynamic and hence can span across multiple pages. But I'm unable to split image across pages. I tried splitLate(false) as well. Please suggest solutions / ideas / workaround. Ciao, SKR ...

pdf page fliping

I want to flip the pdf pages on iphone. I load the pdf file on iphone but it is scrolling I want to flip pdf pages... please give me any helo ...

ApacheFOP - Blank PDF Output ?

I've been trying to transform my XML documents to PDF through Apache FOP, but the output pdf is blank. Any help to why this is occuring is greatly appreciated. The code seems to be executed without errors: C:\Users\dfh\Desktop\fop-0.20.5>fop -xml DICENTIA_SDC_SN_1_224860.xml -xsl testx sl.xsl -pdf test2.pdf [INFO] Using org.apache.xer...

Simple PDF created with iTextSharp cannot be opened by Acrobat Reader?

I create simple test PDF document using iTextSharp. I'm just using PdfContentByte to show some text. This is the code: Document document = new Document(); Stream outStream = new FileStream("D:\\aaa\\test.pdf", FileMode.OpenOrCreate); PdfWriter writer = PdfWriter.GetInstance(document, outStream); document.Open(); PdfC...

Make text wrap in a cell with FPDF?

Right now when I use a cell with text, it all stays on one line. I know I could use the write function, but I want to be able to specify the height and width. This is what I have now, but as I said the text does not wrap to stay in the dimensions: $pdf->Cell( 200, 40, $reportSubtitle, 1, 1 ); ...

How can I create PDF documentation with cut-and-paste-able code snippets?

I've tried using LaTeX and DocBook for documenting programming tools, to get PDF output. What I've found is that these tools are excellent in some ways - easily versioned, and generating very usable PDF manuals. But there is a serious flaw. Code-snippets cannot simply be cut-and-pasted out of the PDF. With DocBook, the problem is the lo...

Online WYSIWYG PDF editor

Hi, Actually i'm looking for a simple online WYSIWYG PDF editor where i can build simple formular (image,text,inputs) with drag&drop, but i could'nt find any. Alternatively i would also accept a HTML WYSIWYG editor like ckeditor, but with an Grid option for placing absolute elements. With only absolute elements it should'nt be hard to ...

Get Data to PDF Form from MySql Database using PHP/JAVA

Hello All, I am working on project which need to get data from MySql database to PDF form. Can anyone please guide how can I solve this problem? I check internet for solution but I found I can create PDF form and get the data from DB to PDF form. My requirement are: I have PDF form on server I need to open that PDF form (using GUI) ...

How to convert a PDF from HTML using C#?

Hi, Can anyone tell me how to convert a PDF document from an HTML code using C#? I'm using itextsharp 5.0.2 dll. I have come across this forum. I didnt find any solution so far. And some of them mentioned iTextSharp.HtmlParser but i cannot find such kind of class in my version of dll. In which version should i need to use to achieve my ...

How can I extract embedded fonts from a PDF as valid font files?

I'm aware of the pdftk.exe utility that can indicate which fonts are used by a PDF, and wether they are embedded or not. Now the problem: given I had PDF files with embedded fonts -- how can I extract those fonts in a way that they are re-usable as regular font files? Are there (preferably free) tools which can do that? Also: can this b...

PDF Quartz Rendering quality

On the iPad, I need to render a large pdf (more than 1gb). For this I use Quartz. Now everything works fine except the quality of included pdf in my pdf. An image will explain everything. This is the pdf document: http://dl.dropbox.com/u/5809971/PDFRender/book.pdf This is the ipad rendering (simulator and device are identical): http:...

Why doesnt Acrobat Distiller embed all fonts fully?

When I use Acrobat Distiller (v.9.1.3), it seems that I cannot embed all fonts -- at least not in the way I want to (no subsetting). One example is Wingdings (TrueType). I activated the tickboxes and settings to "Always embed" and "No subsetting". If I check in a text editor the *.joboptions file that I saved as my custom Distiller prof...

Generating PDF printouts from PHP

Hi, I have a PHP program that reads from the database and generated formatted sheets. The sheet is one for each person in the database. So, I thought the best way is to convert each into a PDF because this way I don't have to worry about headers, footers and the margins that the printer adds automatically. I have used DOMPDF for this...

How to edit PDF properties in java?

I need to edit existing properties or set new PDF properties such as author name, title, subject, etc. from a java application. Is there any way to do that? I have found the apache.pdfbox library but I don't know whether it will solve my issues or not? ...

Converting pdf file to images using c#

Hello folks., using c#,i need to Convert each page of a pdf file into separate images and display the images? is it possible to do this without using 3rd party dll? any pointers ? thank you ...

PDF 2 Post script

I am stuck up with a file conversion issue. I need to convert a PDF file to postscript file(Through program c#). Is it possible without any third party dll?? Any one can suggest open source projects for the same? ...

PDF generation with Flying Saucer: Specifying a fallback font for unknown glyphs?

Our web application generates PDF files from HTML pages on the fly, using the Flying Saucer/xhtmlrenderer library. Unfortunately, the source text may contain certain unicode characters (the cyrillic alphabet, for example) which are not included in the font we use for this. Changing to another font is not an option because of corporate de...

Ghostscript renders embedded fonts in pdf poorly (all jaggy)

Hi, Ghostscript doesn't render embedded fonts in pdf's properly. e.g. http://vegro.nl/cmsfiles/ConsumentenAssortiment/Brochure/10.axd The characters of the logo on the right top ('Thermrad') are all jagged. If I open the file in Adobe Reader, no problem at all! Do you have this problem too? Is there any solution? I've been searching fo...

How can I read PDF Bookmarks with PHP?

I've been looking (unsuccessfully) for a way to open a PDF file and get the bookmarks out of it. I've looked at most PHP libraries for PDFs, but they seem focused on creation, not reading. At this point, I'd be happy with a solution in any language, so it doesn't have to be PHP, but it would be nice. Thanks! ...

How to thumbnail a multi-page pdf with paperclip

I'd like to have Paperclip create 2 thumbnails for each page of a multipage PDF file that is uploaded. I'm running Paperclip 2.3.1.1 and using this in my Asset model: has_attached_file :asset, :styles => { :medium => "800x600>", :thumb => "100x100>" } So, when I upload a 3 page pdf file, I was hoping this would ...