Main > Free Download Search >

Free in pdf format software for linux

in pdf format

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3597
Common Data Format 3.1

Common Data Format 3.1


Common Data Format is a self-describing data abstraction for the storage and manipulation of multidimensional data. more>>
Common Data Format is a self-describing data abstraction for the storage and manipulation of multidimensional data in a platform- and discipline-independent fashion.
It consists of a scientific data management package (known as the "CDF Library") that allows programmers and application developers to manage and manipulate scalar, vector, and multi-dimensional data arrays.
Enhancements:
- Adds new sets of APIs to allow Standard Interface to interact with zVariables and other CDF-related information.
- Adds MingW and FreeBSD ports.
- Adds support for Intel C++ and Fortran for Linux.
- Adds the ability to create legacy CDF 2.7 files.
- Fixes a bug that prevented directories from having .cdf or .skt extensions.
<<less
Download (1.5MB)
Added: 2006-03-13 License: Public Domain Price:
1320 downloads
PDF::FromHTML 0.12

PDF::FromHTML 0.12


PDF::FromHTML is a Perl module to convert HTML documents to PDF. more>>
PDF::FromHTML is a Perl module to convert HTML documents to PDF.

SYNOPSIS

my $pdf = PDF::FromHTML->new( encoding => utf-8 );
$pdf->load_file(source.html);
$pdf->convert(
Font => /path/to/font.ttf,
LineHeight => 10,
Landscape => 1,
);
$pdf->write_file(target.pdf);

This module transforms HTML into PDF, using an assortment of XML transformations implemented in PDF::FromHTML::Twig.

There is also a command-line utility, html2pdf.pl, that comes with this distribution.

<<less
Download (0.023MB)
Added: 2006-08-10 License: Perl Artistic License Price:
1179 downloads
PdfRipImage 0.2

PdfRipImage 0.2


PdfRipImage is a utility to extract images from PDF documents. more>>
PdfRipImage is a utility to extract images from PDF documents and convert them to a format of your choice. You can choose to extract whole pages or just the images contained in them.

The program is available as a GNOME graphical version.

<<less
Download (0.40MB)
Added: 2006-08-31 License: GPL (GNU General Public License) Price:
1150 downloads
Fortran::Format 0.90

Fortran::Format 0.90


Fortran::Format is a Perl module to read and write data according to a standard Fortran 77 FORMAT. more>>
Fortran::Format is a Perl module to read and write data according to a standard Fortran 77 FORMAT.

SYNOPSYS

use Fortran::Format;

my $f = Fortran::Format->new("2(N: ,I4,2X)");
print $f->write(1 .. 10);
# prints the following:
# N: 1 N: 2
# N: 3 N: 4
# N: 5 N: 6
# N: 7 N: 8
# N: 9 N: 10

# if you dont want to save the format object,
# just chain the calls:
Fortran::Format->new("2(N: ,I4,2X)")->write(1 .. 10);

This is a Perl implementation of the Fortran 77 formatted input/output facility. One possible use is for producing input files for old Fortran programs, making sure that their column-oriented records are rigorously correct. Fortran formats may also have some advantages over printf in some cases: it is very easy to output an array, reusing the format as needed; and the syntax for repeated columns is more concise. Unlike printf, for good or ill, Fortran-formatted fields never exceed their desired width. For example, compare

printf "%3d", 12345; # prints "12345"
print Fortran::Format->new("I3")->write(12345); # prints "***"

This implementation was written in pure Perl, with portability and correctness in mind. It implements the full ANSI standard for Fortran 77 Formats (or at least it should). It was not written with speed in mind, so if you need to process millions of records it may not be what you need.

<<less
Download (0.018MB)
Added: 2007-04-20 License: Perl Artistic License Price:
925 downloads
PDFMap 2.00

PDFMap 2.00


PDFMap is a Python library which helps you create of high quality maps in PDF format. more>>
PDFMap is a Python library which helps you create of high quality maps in PDF format. Objects of any type (either shapes or images) can be placed on a map and scaled and rotated to reflect their original dimensions and orientation. You can make each object clickable in Adobe Acrobat Reader (e.g., to access a Web-enabled application from which youve extracted the data used to create the map).

It serves successfully in drawing archaelogical objects on cave maps, but as the examples may show you, it can also draw things at a very high scale, e.g. an Europe or World map.

Each map can have an optional rasterized background which can be rotated automatically if it is not North oriented.

PDFMap can automatically draw objects on each map. Objects can be of any type (e.g. City, School, Archaeological objects, whatever you like), and are represented by shapes or images, scaled to the actual objects dimensions and orientation. Each object can also have an associated url which will render the object clickable in tools like Adobe Acrobat Reader (NB : the clickable area is always a rectangle of the actual objects dimensions, not of the representing shapes dimensions), the use of this feature depends entirely on your imagination : draw maps from a database and link back to a web enabled application which manipulates this database is just an example (and an interesting one at that, just
believe me).

PDFMap uses two types of input files :

Configuration files :

Those are used to tell PDFMap which shape or image should represent each type of object, as well as set different parameters for this objects type :pen thickness, colors, minimal and maximal size, etc...

Data files :

Those are used to feed PDFMap with lists of objects to draw. They are generally the result of an ASCII export from your favorite spreadsheet or relational database management system.

The tests/ subdirectory contains sample configuration and data files which are well commented. Read them and run the tests programs to learn how PDFMap works.
<<less
Download (1.4MB)
Added: 2006-07-16 License: GPL (GNU General Public License) Price:
1196 downloads
PdfRipImage_script 0.3

PdfRipImage_script 0.3


PdfRipImage is a utility to extract images from PDF documents. more>>
PdfRipImage is a utility to extract images from PDF documents and convert them to a format of your choice. You can choose to extract whole pages or just the images contained in them.

The program is available as a command line shell script.

<<less
Download (0.008MB)
Added: 2006-08-31 License: GPL (GNU General Public License) Price:
1150 downloads
PandaLex PDF Parser 0.5

PandaLex PDF Parser 0.5


PandaLex PDF Parser is a flex and bison parser for PDF documents. more>>
PandaLex is the PDF parsing code from Panda, which has been split into its own project to increase its utility.

It is a flex and bison description of the PDF specification, which allows programmers to define callbacks to handle different document elements.
<<less
Download (0.38MB)
Added: 2005-05-04 License: GPL (GNU General Public License) Price:
1639 downloads
OODoc::Format::Pod 0.98

OODoc::Format::Pod 0.98


OODoc::Format::Pod is a Perl module to produce POD pages from the doc tree. more>>
OODoc::Format::Pod is a Perl module to produce POD pages from the doc tree.

INHERITANCE

OODoc::Format::Pod
is an OODoc::Format
is an OODoc::Object

OODoc::Format::Pod is extended by
OODoc::Format::Pod2

SYNOPSIS

my $doc = OODoc->new(...);
$doc->create
( pod
, format_options => [show_examples => NO]
, append => "extra textn"
);

Create manual pages in the POD syntax. POD is the standard document description syntax for Perl. POD can be translated to many different operating system specific manual systems, like the Unix man system.

<<less
Download (0.10MB)
Added: 2007-03-09 License: Perl Artistic License Price:
962 downloads
PDF Download 0.8.1

PDF Download 0.8.1


PDF Download is an extension which allows you to choose what to do with a PDF file on a website. more>>
PDF Download is an extension which allows you to choose what to do with a PDF file on a website.

Allows to choose if you want to view a PDF file inside the browser (as PDF or HTML), if you want to view it outside Firefox with your default or custom PDF reader, or if you want to download it!

<<less
Download (0.12MB)
Added: 2007-06-04 License: MPL (Mozilla Public License) Price:
879 downloads
PDF::FromHTML::Twig 0.23

PDF::FromHTML::Twig 0.23


PDF::FromHTML::Twig is a Perl module with PDF::FromHTML guts. more>>
PDF::FromHTML::Twig is a Perl module with PDF::FromHTML guts.

SYNOPSIS

(internal use only)

No user-serviceable parts inside.

<<less
Download (0.051MB)
Added: 2007-02-13 License: MIT/X Consortium License Price:
985 downloads
DateTime::Format::Pg 0.15

DateTime::Format::Pg 0.15


DateTime::Format::Pg is a Perl module to parse and format PostgreSQL dates and times. more>>
DateTime::Format::Pg is a Perl module to parse and format PostgreSQL dates and times.

SYNOPSIS

use DateTime::Format::Pg;

my $dt = DateTime::Format::Pg->parse_datetime( 2003-01-16 23:12:01 );

# 2003-01-16T23:12:01+0200
DateTime::Format::Pg->format_datetime($dt);

This module understands the formats used by PostgreSQL for its DATE, TIME, TIMESTAMP, and INTERVAL data types. It can be used to parse these formats in order to create DateTime or DateTime::Duration objects, and it can take a DateTime or DateTime::Duration object and produce a string representing it in a format accepted by PostgreSQL.

CONSTRUCTORS

The following methods can be used to create DateTime::Format::Pg objects.
new( name => value, ... )

Creates a new DateTime::Format::Pg instance. This is generally not required for simple operations. If you wish to use a different parsing style from the default then it is more comfortable to create an object.

my $parser = DateTime::Format::Pg->new()
my $copy = $parser->new( european => 1 );

This method accepts the following options:

european

If european is set to non-zero, dates are assumed to be in european dd/mm/yyyy format. The default is to assume US mm/dd/yyyy format (because this is the default for PostgreSQL).

This option only has an effect if PostgreSQL is set to output dates in the PostgreSQL (DATE only) and SQL (DATE and TIMESTAMP) styles.
Note that you dont have to set this option if the PostgreSQL server has been set to use the ISO format, which is the default.

server_tz

This option can be set to a DateTime::TimeZone object or a string that contains a time zone name.

This value must be set to the same value as the PostgreSQL servers time zone in order to parse TIMESTAMP WITH TIMEZONE values in the PostgreSQL, SQL, and German formats correctly.

Note that you dont have to set this option if the PostgreSQL server has been set to use the ISO format, which is the default.

clone()

This method is provided for those who prefer to explicitly clone via a method called clone().

my $clone = $original->clone();

If called as a class method it will die.

<<less
Download (0.019MB)
Added: 2007-05-17 License: Perl Artistic License Price:
890 downloads
Format on Save 1.1.0

Format on Save 1.1.0


Format on Save is a Eclipse plugin to automatically organizes imports and formats code when saving a Java editor. more>>
Format on Save is a Eclipse plugin to automatically organizes imports and formats code when saving a Java editor.

This is the exact equivalent as doing Ctrl-Shift-O, Ctrl-Shift-F before saving. New features: - Sort Members and Correct Indentation - preference page to configure defaults

<<less
Download (0.051MB)
Added: 2006-09-13 License: GPL (GNU General Public License) Price:
1138 downloads
kpdfimagestool 0.1.5

kpdfimagestool 0.1.5


kpdfimagestool is a service menu for KDE. more>>
kpdfimagestool is a service menu which allows you to:

- Extract images from a pdf file in jpeg or ppm/pbm format

In ppm/pbm it is:

- PBM for monochrome images
- PPM for non-monochrome images

<<less
Download (0.002MB)
Added: 2006-12-04 License: GPL (GNU General Public License) Price:
1054 downloads
Plone2PDF 0.3.7

Plone2PDF 0.3.7


Plone2PDF is a Plone product which exports various types of Plone documents to a pdf document. more>>
Plone2PDF is a Plone product which exports various types of Plone documents to a pdf document.

The goal of this product is to add a plone action to export Plone documents to the PDF format.

Architecture
The products needs HTMLdoc to make the conversion to PDF.

Status
The status of this product is still beta (version < 1.0). Comments, patches etc. are welcome.

<<less
Download (0.017MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
933 downloads
PDF Toolkit 0.6

PDF Toolkit 0.6


PDF Toolkit is a simple servicemenu for PDF files. more>>
PDF Toolkit is a simple servicemenu for PDF files.
Main features:
- give master password
- give user password
- allow only printing
- watermark
- extract a range of pages
- join PDF files
<<less
Download (0.50MB)
Added: 2006-03-27 License: GPL (GNU General Public License) Price:
1312 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5