pdf

Programatically changing PDF quality in PHP.

Can I programatically change the quality of a PDF? I have a client that is a newspaper, and when they submit the PDF form of the paper to their site they are submitting the same copy they send to the printer which can range from 30-50Mb. I can manually lower the quality (still plenty high for the web) and it will be 3-5Mb so this will h...

HTML document to PDF?

I've got an ASP.NET web page that is a dynamically generated report. For business reasons, this exact report needs to be produced as a PDF. What's the best way to do this? Setting the selected printer to Adobe PDF is not an option. Learn to programmatically create PDFs from scratch? Is there a way to render it in some browser control, t...

Parse Pdf File and write content in word file using java

how to Parse a PDF file and write the content in word file using Java? ...

How to render pdfs using C#

I want to load and draw pdf files graphically using C#. I don't need to edit them or anything, just render them at a given zoom level. The pdf libraries I have found seem to be focussed on generation. How do I do this? Thanks. ...

File does not begin with '%PDF-'

I am exporting the HTML Content to PDF. System.IO.StringWriter sWriter = new System.IO.StringWriter(); System.Web.UI.HtmlTextWriter htmlWriter = new HtmlTextWriter(sWriter); Response.Buffer = true; FormId.RenderControl(htmlWriter); Response.ContentType = "application/pdf"; // Added appropriate headers Response....

Any recommendations for a PDF 3D SDK with C++ interface

I'm on the look out for a Cor C++ library / SDK that will allow me to either write a 3d PDF directly, or convert a DXF or DWG into a 3D PDF. So far I have come up with the PDF3d library which fits the bill, but is reasonably costly and has an expensive per user run time license. I don't mind a reasonable SDK cost, but the per seat cost...

Easy way to pdf a web report

We are trying to create a web reporting system, with the standard flash chart's, one of the major requirements is that this report must be emailed to customers on a regular schedule as a PDF file. Does anyone know of either An easy tool to point at the webpage and pdf it, including flash charts Another way of doing this? We have tri...

Javascript in PDF double values

I have the following code that is supposed to do a sum in a pdf. var sum = 0.0; var f1 = this.getField("price"); var temp = parseFloat(f1.value); sum = temp; var total = this.getField("total"); if(sum > 0) { total.value = sum; } else { total.value = ""; } But if the input is 18.31 my total is 18 EDIT: I also tried conso...

Parameter Problem with Crystal Reports Export

I'm trying to export a crystal report to pdf and then email it, but every time I get to the export command, I get a ParameterFieldCurrentValue exception. I've traced the values of the Parameter collection in the ReportDocument and the values are being set there. Also, all four parameters are strings. The first one is set to allow more t...

Display math powers using Ruby PDF::Writer or Ruport?

Is there an easy way to display powers in PDF generated using the Ruby PDF::Writer library? I realize that I can just print the exponent a bit higher than the base number, however I thought maybe there is some easier way to do this... such as a markup tag of some sort. Basically, I want to cleanly display x**-2. Thanks in advance! ...

Looking for a PDF file parser.

Does anyone know of a PDF file parser that I could use to pull out sections of text from the plaintext pdf file? Specifially I want a way to be able to reliably pull out the section of text specific to annotations? Delphi, C# RegEx I dont mind. ...

elegant solution for automatic downloads

I am currently using the meta http-equiv='Refresh' to automatic start PDF downloads. however this has different effect on each of the browsers. The main problem is with IE (6 & 7) once the user is redirected to the PDF if the user click the back button they are sent back to the page that initiated the download and then promptly redirec...

PDF -Adobe Digital Edition

I would like to protect a pdf document using Adobe Digital Edition. I think that it is currently being used to protect the eBooks to prevent illegal circulation. Can any one throw some light on that. Is it possible to do it using C# or something ? ...

Need help/answers on PDF color seperation

Using the following process: A PDF is been created by PDFCreator, when a user prints something to the virtual printer The PDF gets further processed with integrated VBScript handler and passed over to JAVA which does some processing with the PDF content In the middle of the process an external application is called with the PDF that ad...

Google Search of PDF Documents

We are having troubles getting Google to index the PDF files in our site. There are about 50 PDF and range in size for 20 KB to a little under two megs. They are not protected, can be read annonymously, and inside of PDF Reader, you can search the document. They are listed in the SiteMap.xml. I can even look at the IIS logs and see ...

How can I combine two PDF pages show up on the same page?

Hello, I am looking for a free tool that allows re-arranging pages of a PDF document and combining multiple pages per sheet. The first part (re-arranging) is easily solved by many tools (I use PyPDF). The problem is with the second requirement: to combine two (or more) pages into single page. For example, take two pages (A and B), ro...

PDF Previewing and viewing

I'm creating a document viewing web application. You log in and it takes you to a screen where you have all your docs listed on the left. I want to make it so that when you roll over a document a preview of the document shows up on the right. From there you can click on it for a full view and printing capabilities. I'm not asking how...

Creating two pdf pages with Imagick

Currently i can create PDF files from images in Imagick with this function $im->setImageFormat("pdf"); $im->writeImage("file.pdf"); And it's possible to fetch multiple pages with imagick like this $im = new imagick("file.pdf[0]"); $im2 = new imagick("file.pdf[1]"); But is it possible to save two image objects to two pages? (example...

How to make a pdf file using PHP

How can I make a PDF file in PHP. What I want to make is a student list. So I want to query the database, get the information and give it to the user as a PDF when he clicks generate student list. ...

using imagemagick or ghostscript (or something) to scale PDF to fit page?

I've been bashing my head against this to no avail. I need to shrink some large PDFs to print on an 8.5x11 inch (standard letter) page. Can imagemagick/ghostscript handle this sort of thing, or am I having so much trouble because I'm using the wrong tool for the job? Just relying on the 'shrink to page' option in client-side print dial...