downloading form content as pdf


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting downloading form content as pdf
# 1  
Old 04-06-2009
Java downloading form content as pdf

Hi All,
I have a requirement of dowloading the dynamic form content displayed in a webpage as a pdf file. The form content is not too complex but intermediate - it has textboxes, images, textarea, radiobuttons,dropdowns etc.
Can anyone suggest how i can achieve this? Your help is appreciated!

With Regards
Dileep Pattayath
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Trying to submit web form content to a shell script

Hi I was hoping some one could help me with a problem I have. I am trying to collect some information from a web form and save it to a text file. I found an example on this site that is sort of what I am trying to accomplish, the shell script bellow should echo the input back to the browser... (0 Replies)
Discussion started by: Paul Walker
0 Replies

2. Shell Programming and Scripting

Converting secured pdf files to pdf using acroread

Does anybody have idea of Converting secured pdf files to pdf using acroread ? ---------- Post updated at 04:49 PM ---------- Previous update was at 04:44 PM ---------- This file is not password protected. (4 Replies)
Discussion started by: Soham
4 Replies

3. Shell Programming and Scripting

Mail sending with multiple attachement(pdf and csv) with html content from Linux

Hi, We have a requirement to send multiple attachment(pdf and csv) along with html content in a single mail. For that we are using uuencode. It is working for single pdf attachment and html content. But we are unable to send both pdf and csv attachment with html content. Below is the script.... (5 Replies)
Discussion started by: dholea
5 Replies

4. Shell Programming and Scripting

Shell Script to Dynamically Extract file content based on Parameters from a pdf file

Hi Guru's, I am new to shell scripting. I have a unique requirement: The system generates a single pdf(/tmp/ABC.pdf) file with Invoices for Multiple Customers, the format is something like this: Page1 >> Customer 1 >>Invoice1 + invoice 2 >> Page1 end Page2 >> Customer 2 >>Invoice 3 + Invoice 4... (3 Replies)
Discussion started by: DIps
3 Replies

5. UNIX for Dummies Questions & Answers

Text file + image/form/overlay file to PDF

Hi, We have an app specific legacy environment running SCO Openserver 5.0.7. I need to be able to (1) scan a pre-existing “form” consisting of logo/boxes/lines/static text as an image , (2) lay a print file from the app "on top of the image" and (3) output the "merge" as a PDF file. Scanning... (1 Reply)
Discussion started by: 65bit
1 Replies

6. UNIX for Dummies Questions & Answers

wget pdf downloading problem

Hi. I am trying to make a mirror of this free online journal: http://www.informaworld.com/smpp/title~content=t716100758~db=all Under the individual issues, the link location for the "Full Text PDF" does not have ".pdf" as an extension -- so when I use wget it misses the file. However clicking... (5 Replies)
Discussion started by: obo1234
5 Replies

7. UNIX for Advanced & Expert Users

Changing Unix form to Microsoft Word form to be able to email it to someone.

Please someone I need information on how to change a Unix form/document into a microsoft word document in order to be emailed to another company. Please help ASAP. Thankyou :confused: (8 Replies)
Discussion started by: Cheraunm
8 Replies
Login or Register to Ask a Question
CAM::PDF::Content(3pm)					User Contributed Perl Documentation				    CAM::PDF::Content(3pm)

NAME
CAM::PDF::Content - PDF page layout parser LICENSE
Same as CAM::PDF SYNOPSIS
use CAM::PDF; my $pdf = CAM::PDF->new($filename); my $contentTree = $pdf->getPageContentTree(4); $contentTree->validate() || die 'Syntax error'; print $contentTree->render('CAM::PDF::Renderer::Text'); $pdf->setPageContent(5, $contentTree->toString()); DESCRIPTION
This class is used to manipulate the layout commands for a single page of PDF. The page content is passed as a scalar and parsed according to Adobe's PDF Reference 3rd edition (for PDF v1.4). All of the commands from Appendix A of that document are parsed and understood. Much of the content object's functionality is wrapped up in renderers that can be applied to it. See the canonical renderer, CAM::PDF::GS, and the render() method below for more details. FUNCTIONS
$pkg->new($content) $pkg->new($content, $data) $pkg->new($content, $data, $verbose) Parse a scalar CONTENT containing PDF page layout content. Returns a parsed, but unvalidated, data structure. The DATA argument is a hash reference of contextual data that may be needed to work with content. This is only needed for toString() method (which needs "doc => CAM::PDF object" to work with images) and the render methods, to which the DATA reference is passed verbatim. See the individual renderer modules for details about required elements. The VERBOSE boolean indicates whether the parser should Carp when it encounters problems. The default is false. $self->parse($contentref) This is intended to be called by the new() method. The argument should be a reference to the content scalar. It's passed by reference so it is never copied. $self->validate() Returns a boolean if the parsed content tree conforms to the PDF specification. $self->render($rendererclass) Traverse the content tree using the specified rendering class. See CAM::PDF::GS or CAM::PDF::Renderer::Text for renderer examples. Renderers should typically derive from CAM::PDF::GS, but it's not essential. Typically returns an instance of the renderer class. The rendering class is loaded via "require" if not already in memory. $self->computeGS() $self->computeGS($skiptext) Traverses the content tree and computes the coordinates of each graphic point along the way. If the $skiptext boolean is true (default: false) then text blocks are ignored to save time, since they do not change the global graphic state. This is a thin wrapper around render() with CAM::PDF::GS or CAM::PDF::GS::NoText selected as the rendering class. $self->findImages() Traverse the content tree, accumulating embedded images and image references, according to the CAM::PDF::Renderer::Images renderer. $self->traverse($rendererclass) This recursive method is typically called only by wrapper methods, like render(). It instantiates renderers as needed and calls methods on them. $self->toString() Flattens a content tree back into a scalar, ready to be inserted back into a PDF document. Since whitespace is discarded by the parser, the resulting scalar will not be identical to the original. AUTHOR
See CAM::PDF perl v5.14.2 2012-07-08 CAM::PDF::Content(3pm)