Main > Free Download Search >

Free a5 paper size software for linux

a5 paper size

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1751
Paper::Specs 0.07

Paper::Specs 0.07


Paper::Specs is a Perl module with size and layout information for paper stock, forms, and labels. more>>
Paper::Specs is a Perl module with size and layout information for paper stock, forms, and labels.

SYNOPSIS

use Paper::Specs units => "cm";
my $form = Paper::Specs->find( brand => "Avery", code => "1234");

use Paper::Specs units => "cm", brand => "Avery";
my $form = Paper::Specs->find( code => "1234");

# location of first label on sheet
my ($xpos, $ypos) = $form->label_location( 1, 1);
my ($h, $w) = $form->label_size;

I appologise in advance for the hasty nature of this code. I want to get it out to support some other code I am writing. I promise to revisit it shortly to clear up the rough patches - however your valuable input is most welcome.

CAVEAT ALPHA CODE - This is a preliminary module and will be subject to fluctuations in API and structure based on feedback from users.

I expect that there will be some interest in this code and it should firm up quickly.

If this module does not deliver what you are looking for then you are encouraged to contact the author and voice your needs!

OTHER LABELS - I know about the Labels.xml file which is part of OpenOffice but have not figured out how it is encoded. I have the gLabels specifications file too. I plan to use these to help populate the data for this module.

<<less
Download (0.017MB)
Added: 2007-02-27 License: Perl Artistic License Price:
971 downloads
Pysize 0.2

Pysize 0.2


Pysize is a graphical and console tool for exploring the size of directories. more>>
Pysize is a graphical and console tool for exploring the size of directories. The project is written in Python, and requires Python ≥ 2.4 and pygtk ≥ 2.8 if you want to use the GUI.

Three user interfaces are available using the --ui command line option, the best available is chosen by default.

<<less
Download (0.10MB)
Added: 2007-03-11 License: GPL (GNU General Public License) Price:
959 downloads
Photo resize 0.1

Photo resize 0.1


Photo resize is a service menu for KDE that changes the selected pictures to a chosen size. more>>
Photo resize is a service menu for KDE that changes the selected pictures to the chosen size (550x550px, 500x500px, 450x450px,200x200px,150x150px).

The geometry will be hold. The script will size the pictures to their longer side.

Attention: The pictures will be overwritten!!

<<less
Download (MB)
Added: 2007-07-10 License: GPL (GNU General Public License) Price:
843 downloads
Paper Harbour 1.0.4

Paper Harbour 1.0.4


Paper Harbour is a multi-user document management system. more>>
Paper Harbour is a software based system which allows you to securely organise and distribute your electronic documentation.
Paper Harbour runs over a network and allows clients to access a central document archive. Paper Harbour is compatible with both Windows and Linux platforms and is designed to work with MySQL open source database, although it is compatible with other databases.
Paper Harbour can provide a central point for information exchange in the form of shared documents.
Whether the organisation is project based, product based or service based Paper Harbour can provide structure and tools to aid business development.
Paper Harbour doesnt only store documents, it stores information about the documents. It also includes functionality which supports distribution of documents, unique document ids, document reviews, searching and more.
Paper Harbour is designed to be simple so that users do not need a high degree of technical knowledge to be able to use it. This simplicity is defined in the concept which Paper Harbour is built on.
Paper Harbour is also designed as a platform for document management. It can be installed and run with the standard functions or it can be modified to include customer specific functions. In addition, Paper Harbour is supplied with the source code so our customers are free to make their own modifications.
The Paper Harbour has been designed so that it is compatible with Open Source solutions. This means that our customers can reduce their implementation cost. Supporting Technologies Nordic are committed to ensuring that Paper Harbour is affordable for all sizes of organisations, so that smaller organisation can have access to the same technologies that large organisations use.
Main features:
- Centralised Storage
- Automatic Distribution
- Version and Change Control
- Security
<<less
Download (0.90MB)
Added: 2005-04-12 License: LGPL (GNU Lesser General Public License) Price:
1835 downloads
Resize Image 1

Resize Image 1


Resize Image is a service menu which adds the ability to resize an image to a new size. more>>
Resize Image is a service menu which adds the ability to resize an image to a new size.

Requires ImageMagick, KDialog and bash.
<<less
Download (MB)
Added: 2006-10-24 License: LGPL (GNU Lesser General Public License) Price:
1102 downloads
Optar 1.0

Optar 1.0


Optar stands for OPTical ARchiver. more>>
Optar stands for OPTical ARchiver. This project is a codec for encoding data on paper. Optar fits 200kB on an A4 page, then you print it with a laser printer. If you want to read the recording, scan it with a scanner and feed into the decoder program.

A practical level of reliability is ensured using forward error correction code (FEC). Automated processing of page batches facilitates storage of files larger than 200kB.
<<less
Download (0.028MB)
Added: 2007-07-14 License: GPL (GNU General Public License) Price:
834 downloads
File::Size 0.06

File::Size 0.06


File::Size is a Perl module to get the size of files and directories. more>>


SYNOPSIS

Get the size for directory /etc/ with the block size of 1024 while following symbolic links:

my $obj = File::Size->new(
dir => /etc/,
blocksize => 1024,
followsymlinks => 1,
humanreadable => 1
);
print $obj->getsize(), "n";

File::Size is used to get the size of files and directories.

There are 6 methods you can use:

new

There are 4 optional hash values for the new() method:

dir

The directory you want the module to get the size for it. Default is current working directory.

blocksize

The blocksize for the output of getsize() method. default is 1 (output in bytes).

followsymlinks

If you want to follow symlinks for directories and files, use this option. The default is not to follow symlinks.

humanreadable

If you want output size in human readable format (e.g. 2048 -> 2.0K), set this option to 1.

You dont have to specify any of those options, which means this is okay:
print File::Size->new()->getsize(), " bytesn";

This is okay too:
print File::Size->new()->setdir( /etc/ )->setblocksize( 1024**2 )->getsize(), " MBn";

setdir

Used to set (or get - if called without parameters) the directory. Example: $obj->setdir( /etc/ );

setblocksize

Used to set (or get - if called without parameters) the block size. Example: $obj->setblocksize( 1024 );

setfollowsymlinks

Used to set if you want to follow symbolic links or not. If called without parmeters, returns the current state. Example: $obj->setfollowsymlinks( 1 );

sethumanreadable

Used to set (or get - if called without parameters) if you want human-readable output sizes. Example: $obj->sethumanreadable( 1 );

getsize

Used to calculate the total size of the directory. Prints output according to the block size you did or didnt specify.

<<less
Download (0.003MB)
Added: 2007-04-30 License: Perl Artistic License Price:
907 downloads
LAN Management System 1.9.1

LAN Management System 1.9.1


LMS is the integrated system of networks management designed for various size internet providers (ISP). more>>
LMS (LAN Management System) is the integrated system of networks management designed for various size internet providers (ISP).

That software writed in PHP, Perl and C, works with variuos database systems.

<<less
Download (1.93MB)
Added: 2006-07-01 License: GPL (GNU General Public License) Price:
1230 downloads
Spreadsheet::Perl 0.07

Spreadsheet::Perl 0.07


Spreadsheet::Perl is a pure Perl implementation of a spreadsheet engine. more>>
Spreadsheet::Perl is a pure Perl implementation of a spreadsheet engine.
SYNOPSIS
use Spreadsheet::Perl;
use Spreadsheet::Perl::Arithmetic ;
my $ss = tie my %ss, "Spreadsheet::Perl"
$ss->SetNames("TEST_RANGE" => A5:B8) ;
$ss{TEST_RANGE} = 7 ;
DefineSpreadsheetFunction(AddOne, &AddOne) ;
$ss{A3} = PerlFormula($ss->AddOne("A5") + $ss{A5}) ;
print "A3 formula => " . $ss->GetFormulaText(A3) . "n" ;
print "A3 = $ss{A3}n" ;
$ss{ABC1:ABD5} = 10 ;
$ss{A4} = PerlFormula($ss->Sum("A5:B8", "ABC1:ABD5")) ;
print "A4 = $ss{A4}n" ;
...
Main features:
- set and get values from cells or ranges
- handle cell private data
- has fetch/store callback
- has cell attributes access
- has cell/range fillers (auto-fill functionality)
- set formulas (pure perl and common format)
- compute the dependencies between cells
- formulas can fetch data from multiple spreadsheets and the dependencies still work
- checks for circular dependencies
- debugging triggers
- has a simple architecture for expansion
- has a simple architecture for debugging (and some flags are already implemented)
- can read its data from a file
- supports cell naming
- cell and range locking
- input validators
- cell formats (pod, HTML, ...)
- can define spreadsheet functions from the scripts using it or via a new module of your own
- Recalculate() / AUTOCALC
- value caching to speed up formulas and volatile cells
- cell address offsetting functions
- Automatic formula offsetting
- Relative and fixed cell addresses
- slice access
- Perl scalar mapping to a cell
- some debugging tool (dump, dump table, dump to HTML, formula stack trace, ...)
<<less
Download (0.042MB)
Added: 2007-07-05 License: Perl Artistic License Price:
844 downloads
Image::Density Perl Module 0.2

Image::Density Perl Module 0.2


The metric implemented in the Image::Density Perl Module estimates the density of data where there is data. more>>
The metric implemented in the Image::Density Perl Module estimates the density of data where there is data, and has a reasonable correlation with goodness as judged by humans.

That is, if you let a human look at a set of images and judge quality, the density values for those images as calculated here tend to correlate well with the human judgement (densities that are too high or too low represent "bad images).

This project is intended for use on bitonal TIFF images, such as those from scanning paper documents.
<<less
Download (0.63MB)
Added: 2007-05-15 License: Perl Artistic License Price:
892 downloads
phpFaber TinyLink 1.0.005

phpFaber TinyLink 1.0.005


phpFaber TinyLink project is a Web script for creating tiny URLs. more>>
phpFaber TinyLink project is a Web script for creating tiny URLs.
You probably received internet adress (or links) that did not work with your mail software. The link seems to be cut in half and connect you to an error page.
phpFaber TinyLink allows you to convert quite instantly an endless internet adress into a new shorter one, that points to the exact same page but that is only about 20 characters long.
Internet adresses esay to write one a real sheet of paper !! While reducing the lenght of the internet adress to about 20 characters, phpFaber TinyLink allows you to write it down a piece of paper with far less chances of error.
These two Internet adress are equivalent. phpFaber TinyLink is free. It is fully customizable and doesnt require any programming skills! You can create your site just in 3 clicks!
Enhancements:
- Minor code updates were done.
<<less
Download (0.30MB)
Added: 2006-01-19 License: GPL (GNU General Public License) Price:
1375 downloads
Mapyrus 0.703

Mapyrus 0.703


Mapyrus is software for creating plots of points, lines, polygons and labels to PostScript. more>>
Mapyrus project can create plots of points, lines, polygons and labels to PostScript (high resolution, up to A0 paper size), Portable Document Format (PDF), Scalable Vector Graphics (SVG) format and web image output formats.
Mapyrus is freely-available and is implemented entirely in Java enabling it to run on Linux, Sun Solaris, MicroSoft Windows and other platforms for which Java is available.
Main features:
- A Logo or turtle graphics program.
- An imaginary pen is moved around a page, creating shapes that are drawn into an image file. Reusable routines are built up using a BASIC-like language. Branching and looping constructs enable complex shapes, symbols and patterns to be be defined.
- Reading and displaying of geographic information system (GIS) datasets, text files, or tables held in a relational database (including spatially extended databases such as PostGIS and MySQL).
- Drawing routines are applied to geographic data to produce annotated and symbolized maps and graphs. Attributes of the geographic data control the color, size, annotation and other characteristics of the appearance of the geographic data. Scalebars, legends, coordinate grids and north arrows are also available.
- Integration with the freely-available Java Topology Suite from Vivid Solutions. This library provides geometric algorithms such as buffering, point-in-polygon test and polygon intersection.
- Integration with the ogrinfo program, part of the freely-available OGR library. This program provides access to many GIS data formats.
- Flexibility. Running in one of two ways.
- As a stand-alone program for integration into scripts and batch tasks (suitable for generating a one-off map or a series of similar maps from a template showing different areas, or using different criteria for each map).
- As a self-contained web server providing map and graph images to a web-based application. This also enables Mapyrus to be integrated into larger applications (such as PHP-based applications), with map images fetched using HTTP requests.
Enhancements:
- Upgrade to Java version 1.5.
- Enable shell environment variables to be used directly in Mapyrus.
- Fix reading of ESRI Shape files to correctly read zero width attribute fields, files containing only a single point, and MULTIPOINT geometry having only one point.
<<less
Download (1.5MB)
Added: 2007-06-25 License: LGPL (GNU Lesser General Public License) Price:
854 downloads
Pandore 6.1.2

Pandore 6.1.2


Pandora is a standardized library of image processing functions. more>>
The current version contains functions for 1D, 2D, and 3D images, which may be greyscale, color, or multispectral.
Enhancements:
- A limitation in SaveData and LoadData that restricted the size of data has been fixed.
- There are assorted other minor bugfixes.
<<less
Download (MB)
Added: 2007-06-04 License: CeCILL (CeCILL Free Software License Agreement) Price:
872 downloads
Cadabra 0.115

Cadabra 0.115


Cadabra is a computer algebra system for the manipulation of what could loosely be called tensorial expressions. more>>
Cadabra is a computer algebra system for the manipulation of what could loosely be called tensorial expressions.
Cadabra is aimed at, though not necessarily restricted to, theoretical high-energy physicists. Because of its target audience, the programs interface, storage system and underlying philosophy differ substantially from other computer algebra systems.
Main features:
- Usage of a TeX-like notation, which eliminates many errors in transcribing problems from paper to computer and back.
- Built-in understanding of dummy indices and dummy symbols, including their automatic relabelling when necessary. Powerful algorithms for canonicalisation of objects with index symmetries, both mono-term and multi-term.
- A typing system through properties, but freedom to dispense with this system entirely when it is not needed.
- A new way to deal with products of non-commuting objects, enabling a notation which is identical to standard physicists notation (i.e. no need for special non-commuting product operators).
- A flexible optional undo system. Interactive calculations can be undone to arbitrary level without requiring a full re-evaluation of the entire calculation.
- A simple and documented way to add new algorithms in the form of C++ modules, which directly operate on the internal expression tree.
Cadabra has been under development for some time now, but has never left my own computer. The current version is the first public release, intended to collect feedback from a wider audience. So, feel free to mail me at kasper.peeters (at) aei.mpg.de with suggestions or constructive criticism.
Enhancements:
- Many new algorithms were added.
- The GUI was improved with progress bars, font size selection, and cut and paste.
- Many bugs were fixed.
- This version compiles cleanly on all versions of OS X as well as on 64-bit platforms.
<<less
Download (1.7MB)
Added: 2007-05-23 License: GPL (GNU General Public License) Price:
884 downloads
Lexmark Z11 printer driver for Linux 1.1

Lexmark Z11 printer driver for Linux 1.1


Lexmark Z11 printer driver for Linux is a Linux printer driver/filter for the Lexmark Z11 printer. more>>
Lexmark Z11 printer driver for Linux is a Linux printer driver/filter for the Lexmark Z11 printer, supporting color and b/w printing, variable page size and more.
The driver lz11-V2 is an improvement of the lz11 driver, which was first released in 2002. Additionally to the features of lz11, which include variable page sizes and ink saving, the lz11-V2 version comes with a backward compatibility mode for the filters "cZ11" and "cZ11somsom". While the cZ11 filter is emulated in an improved way, which helps to save ink and takes away the grayish look of color prints, the cZ11somsom emulation only supports the basic properties (as InkType and DitherPPI). Ink weighting is not included, but merely needed, because of a new pixel placement algorithm for black and color ink.
"Highlights" of the lz11-V2 are: further improved printing speed for black ink and a tool to align the skew of the black ink cartridge. A smooth-dithering algorithm for black and color prints was added. The driver comes with an improved set of installation and utility scripts that support automatic installation-option-checking, testpage-printing, black-ink-adjustment, automatic installation of foomatic-xml-files as well as automatic installation of the included PPD files for CUPS and PPR. For backward compatibility reason the GhostScript device emulation (as "hpdj", "epsonc", ...) is still included, but should never be offered on "modern" Linux installations.
The original driver-code "cZ11" was written by Christian Kornblum in 2001 (this code still is the backbone of this filter).
WARNING:This driver is known not to work with the Z31 and Z51. In fact, it is known to hose those printers flash in some circumstances!
Enhancements:
- The installer can be called by ./lz11.install --debug, which will produce BMP files instead of paper prints (for test)
- Now the cups-restart is done also properly for Debian and Gentoo
- An installed Z11 printer-queue (PPD) and its options are updated automatically during installation
- The print-job cancelling is now appropriate for hotplug generated devices. Printer "hick-ups" on a resume are prevented
- The print-job cancelling is shown automatically in an "xterm"
- some smaller bug fixes
<<less
Download (0.060MB)
Added: 2005-12-19 License: GPL (GNU General Public License) Price:
1433 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5