You are on page 1of 25

138 Liechtenstein

139 Lithuania
140 Luxembourg
141 Macau
142 Macedonia
143 Madagascar
144 Malawi
145 Malaysia
146 Maldives
147 Mali
148 Malta
149 Marshall Islands
150 Martinique
151 Mauritania
152 Mauritius
153 Mayotte
154 Mexico
155 Micronesia, Federated States of
156 Moldova
OR

Log on :

http://books.google.co.in/bkshp?hl=en&tab=
wp
• Browse subjects
• Body, Mind & Spirit
• Business & Economics
• Computers
• Cooking
• Design
• Family & Relationships
• Games
• Gardening
• Health & Fitness
• House & Home
• Humor
• Law
• Literary collections
• Literary criticism
• Mathematics
• Medical
• Performing arts
• Pets
• Philosophy
• Photography
• Poetry
• Political science
• Psychology
• Religion
• Self-help
• Social science
• Technology & Engineering
• Transportation
• Travel
impleViewer
The SimpleViewer solution is designed as a
general purpose viewer which also showcases
the extraction functionality of the JPedal Library.

Features include:
•Text Extraction.

•Snapshot Facility.
•Bookmarks.
•Font information and document properties.
•Full text search
•Page navigation functions.
•Page scaling and rotation.
•Also opens JPG, PNG and TIFF files
Online viewer for PDF, PostScript
and Word
This is an online viewer, with which
you can view PDF and PostScript
files as browsable images and Word
documents as web pages. Given a
URL on the net or a file on your Web
site , the viewer will try to retrieve the
document, convert it and show it to
you. No plugin software is required.
Displaying the PDF on your
website
• Displaying the PDF on your website

However, some web designers would prefer to display the whole PDF file instead of the link. This
task can be done by the help of a software known as pdf2swf and whose major task is to convert
a PDF document into a flash file that will be displayed on the website. You can get a free version
of this program from the link http://www.swftools.org/download.html
Note that: Versions of the program are available for both Linux and Windows.

After having downloaded and installed the program on your computer, you can now start with the
conversion of the PDF file. When the PDF file has been converted, you can put it on your website
through a FTP process and by adding the following HTML code
<object width="595" height="842"> <param name="MOVIE" value="nameofdoc.swf"> <param
name="PLAY" value="true"> <param name="LOOP" value="true"> <param name="QUALITY"
value="high"> <embed src="nameofdoc.swf" width="595" height="842" play="true" align=""
loop="true" quality="high" TYPE="application/x-shockwave-flash" PLUGINSPAGE="[[http://
www.macromedia.com/go/getflashplaye]r]"> </embed> </object>
http://www.redearthdesign.com/helpcenter/cms_upload.php
Below Web Site has The Sample

http://www.tizag.com/htmlT/forms.php
HTML Text Areas
Text areas serve as an input field for viewers to place their own comments onto. Forums and the
like use text areas to post what you type onto their site using scripts. For this form, the text area is
used as a way to write comments to somebody.
Rows and columns need to be specified as attributes to the <textarea> tag. Rows are roughly
12pixels high, the same as in word programs and the value of the columns reflects how many
characters wide the text area will be. i.e. The example below shows a text area 5 rows tall and 20
characters wide. Another attribute to be aware of is the wrap. Wrap has 3 values.
wrap=
"off"
"virtual"
"physical"
Virtual means that the viewer will see the words wrapping as they type their comments, but
when the page is submitted to you, the web host, the document sent will not have wrapping
words.
Physical means that the text will appear both to you, the web host, and the viewer including any
page breaks and additional spaces that may be inputed. The words come as they are.
Off of course, turns off word wrapping within the text area. One ongoing line.

HTML Code:
<form method="post" action="mailto:youremail@email.com"> <textarea rows="5"
cols="20" wrap="physical" name="comments"> Enter Comments Here </textarea>
<input type="submit" value="Email Yourself"> </form>
HTML Code:
<form method="post"
action="mailto:youremail@email.com">
<textarea rows="5" cols="20"
wrap="physical" name="comments">
Enter Comments Here </textarea>
<input type="submit" value="Email
Yourself"> </form>

You might also like