pdf

Include a ColdFusion report template in another ColdFusion report template

Is there a way to include/wrap PDF data generated from a ColdFusion template inside another ColdFusion template, or a cfdocument tag? I'm working with a system that has generates lots of different reports, some are generated from .CFR templates, others are created by cfdocument/cfdocumentitem tags with HTML inside. What I need to do is...

non editalbe pdf files i illustrator HOW?

hi gurls and boys! I would like to save an illustrator file as a pdf file but in such a way that could be opened both in acrobat and illustrator but non-editable in illustrator - I wouldn't want my layers, shapes, lines, etc to be accessed to and modified. I thought I could do this by unchecking the option "preserve illustrator editing...

Convert PDF to anything which can be opened by Word

Want to do it via C#, all inline, no Process.Start()...and free...could be RTF, HTML, whatever the case may be...as long as I can open in Word, which I can then save off as RTF, which I can then load within a RichTextBox. I'm aware similar questions have flooded this forum over the years, nothing that seems to address what I am asking t...

How can I make a program overlay text on a postscript file?

I have some graphs in postscript format, generated by gnuplot. I need to place some identifying information on the graph. How can I script some instructions to do that? I want to write a number at the top right corner of the graph (a .ps file). ...

I try to get a PDF AcroForm fields with iTextSharp - and only partially successful

i want a simple code to be able to list all the PDF Forms fields and display their value (content). The attached code works for most of the fields but not for all of them.. i suspect that it doesn't work for the RichText AcroFileds. i'll be happy to know how to do it with iTextSharp. private static void ListFieldNames(string pdfPath) ...

iText Generated PDF Viewing Problem in IE7

Hi Friends, I am generating a pdf using iText. When I open the pdf through the link it does not open in IE 7 but works fine in Chrome. I also noticed if I remove the / from web.xml then it opens perfectly fine in IE 7. My security-constraint in web.xml is: Entire Application / I have to use the /* because of s...

Where's the source code to the native PDF viewer in Google Chrome?

Can't seem to find it in trunk. Is this actually part of the open-source Chromium project? Or is the source to this not actually released? Only mention I could find: http://www.listware.net/201007/chromium-discuss/93274-chromium-discuss-chrome-pdf-viewer-source.html ...

How to create thumbnails/screenshots out of PDF files on my Linux server?

I want to create thumbnails out of PDF files to be able to display a short preview of the PDF file on a website. I tried it by using ImageMagick. Unfortunately the results aren't very pleasing. The resulting images are very fuzzy. Example Thumbnail (fuzzy): http://cl.ly/7563000242690f0dec07 Original PDF: (see Comment) Command: conv...

How to embed links in a Quartz PDF View

I am using Quartz to display a PDF if my iPad app rather than a webview as I dont link the borders and drop shadow effects the webview adds. Can I still use embedded links in the PDFs? If so do I need to do anything special or will they just work? ...

PHP Converting PDF's to images -dUseCropBox

I'm trying to convert a PDF to an image and I need to make sure that the -dUseCropBox parameter is specified for when calling Ghostscript. Can this be done? convert "/var/www/vhosts/site.co.uk/httpdocs/uploads/source_pdf/PP4SDpdf.pdf" -resize 500X500 "/var/www/vhosts/site.co.uk/httpdocs/uploads/image_pdf/SaturdayTest.jpg" It works wel...

load pdf viewer from a hyperlink of pdf file inside webview

Has anyone managed to invoke a pdf viewer to display pdf files upon clicking a hyperlink inside webview? If so, can you share some idea how you accomplish that? ...

Text rendering looks jagged when converting PDF to image using Cocoa on Leopard but not Snow Leopard

Hello, I have a program that composites the pages of a PDF into a single image with each page stacked on top of each the previous one. The program works fine, but the font rendering quality is much lower when run from anything but a Snow Leopard system. In Leopard, the text looks jagged and not antialiased properly. Does anyone know ...

Display, Edit and Save PDF's in the Browser using PDF

I am trying to create an interface to allow easy editing of PDFs like VuePDF in an application I am building. This is not core to the application and will only be used by the admin. I was wondering if there was a per-built stack for editing PDFs in the browser window? Basically the admin user needs to black-out private data, like names...

Show PDF in Android

In my onCreate() I do this check: // // check if we have a PDF viewer, else bad things happen // Intent intent = new Intent(Intent.ACTION_VIEW); intent.setType("application/pdf"); List<ResolveInfo> intents = getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY); if (intents == null || intents.size() == 0...

prevent copy if pdf document (generated from word)

I'm a converting my Word document into pdf using the built-in microsoft office converter (save as--> pdf). I want my pdf to be protected (users cannot copy text from it). i can't seem to find any options for this when converting to pdf. Any hint? Thanks. ...

cfoutput over a PDF

What is the best way to cfoutput query results over a PDF? I need to be able to place the results, ie name, address, etc. over an existing PDF letter for print. ...

Methods of Parsing Large PDF Files

I have a very large PDF File (200,000 KB or more) which contains a series of pages containing nothing but tables. I'd like to somehow parse this information using Ruby, and import the resultant data into a MySQL database. Does anyone know of any methods for pulling this data out of the PDF? The data is formatted in the following manne...

Ipad application crashed when invoke CGContextDrawPDFPage

Hi everybody, I have a pdf document with 1000 pages and I am drawing them using CGContextDrawPDFPage function. But on page 466 application crashed. Here is my page drawing code... NSLog(@"%@",@"Before drawing pdf page."); CGContextDrawPDFPage(context, page); NSLog(@"%@",@"After drawing pdf page."); This is Console output: 20...

How to scan links in a PDF document?

How can I scan links in a PDF Document? Do I have to use Quartz? Which methods/functions? ...

Line Separator in iText?

I'm trying to insert a line separator (you know, that horizontal line that runs across documents) into my document with iText. I've found some resources via Google that use com.lowagie.text.pdf.draw.LineSeparator but the version of iText that I'm using (1.4.2) doesn't seem to have that package. Can anyone suggest another way to add a ni...