pdf

Export DataGrid to PDF using c#

I'm new to c#. Can you suggest a useful link to convert datagrid to PDF. ...

Has anybody tried html2pdf in django?

Ok when im gonna make reports with Java I use iReport for JasperReports Template designs. But with python the alternative is html2pdf - pisa. It would be great to see an example of this. Any hint would be appreciated. Tks. ...

Apache FOP: Displaying UTF-8 Characters in PDF (without embed?)

Hi, I'm trying to use FOP to export a PDF with UTF-8 characters, preferably without needing to embed the font. The following code: <fo:block font="10pt Helvetica" text-align="justify" space-after="10pt" space-before="8pt" keep-with-previous="auto" keep-together.within-page="auto"> <fo:block font-weight="bold" color="gray">Summary</fo...

Save a PDF created with FPDF php library in a MySQL blob field

I need to create a pdf file with the fpdf library and save it in a blob field in my MySQL database. The problem is, when I try to retrieve the file from the blob field and send it to the browser for the download, the donwloaded file is corrupted and does not display correctly. The same pdf file is correctly displayed if I send it immedi...

Add non destructive Bleeds to pdf programmatically

Hi, I've working on something at the moment and we've created a pdf output using FOP which is working fine. Now however the printhouse wants to have bleeds all around the pdf. Is it possible to resize the existing pdf and add the bleeds in a non destructive manner programmatically via a .net or java api (preferrably .net)? Although FOP...

How to get the diff of two PDF files in python?

I need to find the difference between two pdf files. Does any any python related tool have a feature which directly gives the diff of the 2 PDFs? ...

Draw a rectangle in an iText pdf

Is there a way in iText (the java version) to draw a rectangle into a pdf document? ...

editing PDF with PDFKit

i'm writing an application in objective-c (using cocoa). i have a PDF template, i need to substitute actual values into placeholders in PDF and then save the result into new PDF. how can i edit PDF with PDF Kit? can't find anything about editing in documentation, it's all about parsing... or maybe anyone will recommend other library to...

how to generate a pdf file with VB.net?

i would like to generate a very simple report with some images and text and i am wondering if there is a way to generate a pdf file with vb.net? ...

How to render an ASP.NET MVC View in PDF format

I'm working with ExpertPDF's Html-to-PDF conversion utility for this question (although I'm open to other libraries if there's sufficient documentation). In short, I have a view that is formatted a specific way and I would like to render it as a PDF document the user can save to disk. What I have so far is a PrintService (which impleme...

displaying a pdf on a windows form?

in vb.net is it possible to display a pdf file on a form? ...

how do i get microsoftreportviewer on my winform?

i am trying to put a pdf file on my form using microsoft report viewer, but i cannot find it. where is it? ...

difference between microsoft report viewer and adobe pdf reader tools?

i would like to display a pdf on my winform and am thinking of using of those tools in my vb.net application. does anyone know the difference between the two? ...

ideas on generating a pdf report in vb.net

i will need to generate a report based on user input for every food that will look like this: i plan to have a pdf displayed on a winform using the adobe pdf reader control. the pdf will be the header of the above graphic, but the list of foods and the reactions will be generated. this is what i need: i need the form to be printable...

Can you insert blank lines in an already transformed PDF?

I have a situation where I need to increase the space between a table and the header on a PDF that has already been transformed from an XSL template. I need to insert an address in the newly created space. This part is easy enough and I can do that using a stamper and a new table. However, I am struggling to find a solution to move the...

Where should I place the DLL?

I downloaded an itextsharp DLL that I would like to use in my vb.net 2008 express application. In which folder should it be placed? I went into choose items in the toolbox and tried to add it but I got an error This is what I downloaded: http://sourceforge.net/projects/itextsharp/ ...

Zend Framework PDF problems

It's me again guys, I have a small problem: // Create new PDF $pdf = new Zend_Pdf(); // Add new page to the document $page = $pdf->newPage(Zend_Pdf_Page::SIZE_A4); $pdf->pages[] = $page; // Set font $page->setFont(Zend_Pdf_Font::fontWithName(Zend_Pdf_Font::FONT_HELVETICA), 20); // Draw text $page->drawText('Hello...

Zend Framework PDF multiline problems

I have a problem, with Zend_PDF multiline, my problem is that I can't write the entire text to my pdf.My text looks like this: http://pastebin.com/f6413f664 But when I open my .pdf file, the text looks like this: http://screencast.com/t/1CBjvRodeZQd And here is my code: public function pdfAction() { $this->_helper->layout->disab...

fpdf Tables: Cell Splitting/Merging

I am trying to generate a pdf which contains a table with split/merged cells looking like so: Cell | Cell       | Cell Cell | C1 | C2 | Cell        | C1 | C2 | Cell I am using fpdf and was referred to the multicell table script, which I have used previously in similar pdfs. I looked at the code and can't think of a way to make the cell...

I did an 'imports' - error TYPE EXPECTED

I did this: Imports iTextSharp.text.rtf and then this: Dim grx As graphic = New graphic and on the first "graphic" I am getting a "type expected" graphic is a member of iTextSharp.text.rtf Here's the surrounding code: Public Sub New1() Console.WriteLine("Chapter 4 example 4: Simple Graphic") Dim document As Document = Ne...