Main > Free Download Search >

Free print bar codes software for linux

print bar codes

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 7188
GNU barcode 0.98 Beta

GNU barcode 0.98 Beta


GNU Barcode is a tool to convert text strings to printed bars. more>>
GNU Barcode is a tool to convert text strings to printed bars. GNU barcode supports a variety of standard codes to represent the textual strings and creates postscript output.
Main features:
- Available as both a library and an executable program
- Supports UPC, EAN, ISBN, CODE39 and other encoding standards
- Postscript and Encapsulated Postscript output
- Accepts sizes and positions as inches, centimeters, millimeters
- Can create tables of barcodes (to print labels on sticker pages)
<<less
Download (0.32MB)
Added: 2006-06-07 License: GPL (GNU General Public License) Price:
1240 downloads
StringParser_BBCode 0.3.1

StringParser_BBCode 0.3.1


StringParser_BBCode class provides the possibility to parse strings with BB-Codes and convert them to e.g. HTML code. more>>
StringParser_BBCode class provides the possibility to parse strings with BB-Codes and convert them to e.g. HTML code.
BBCode is a kind of markup "language" with which one may structure and format text. It is similar to HTML but it utilizes square braces instead of angle brackets.
Another difference between BBCode and HTML is that when using BBCode invalid code is ignored whereas the validity of the code is important when using HTML.
Enhancements:
- Several bugfixes were made.
- Support was added for parsing [code=foo attr=bar].
- A callback function may be called again on close tag occurrence.
- A processing type "callback_replace?" was added which exhibits the opposite behavior of "usecontent?".
<<less
Download (0.32MB)
Added: 2006-04-27 License: GPL (GNU General Public License) Price:
1276 downloads
warichu bar 1.1.00

warichu bar 1.1.00


warichu bar provides a social annotation tool that sits on top of the web and allows everyone to discuss the webs content. more>>
warichu bar provides a social annotation tool that sits on top of the web and allows everyone to discuss the webs content.

Warichu is a social annotation tool that sits on top of the web and allows everyone to discuss the webs content. You can think of the situation as being similar to that of an ant colony mapping out the terrain it lives in - all the ants investigate here and there, finding useful resources, remembering the details and telling their friends so they can use the resources too. In this analogy the web is the terrain, and we are the ants! We communicate on a layer that overlays the web - a layer just for collaborative communication of information. That layer is the Warichu.

With Warichu you can create various types of virtual sticky note and attach them to web pages. Whenever you go back to that page, your note will appear - and if you send the note to some friends it will appear on the page for them too. Different types of sticky note fulfill different requirements - some can be shared with other people, some are stored locally on your computer, some allow you to modify the web page you stick them to, others allow you to conglomerate snippets of text from a page..

An API is included that allows developers to create their own types of content notes (eg, page highlights, annotations, blogging tools)

<<less
Download (0.013MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
933 downloads
Print/Print Preview 0.4

Print/Print Preview 0.4


Print/Print Preview is a Firefox extension which provides the the Mozilla Suite style Print/Print Preview toolbar button. more>>
Print/Print Preview is a Firefox extension which provides the the Mozilla Suite style Print/Print Preview toolbar button.

Replace the default "Print" button with the Mozilla Suite style "Print/Print Preview" toolbar button/menu.

Based on requests, now also includes the "Page Setup" option and addition to the context menu.

<<less
Download (0.004MB)
Added: 2007-04-06 License: MPL (Mozilla Public License) Price:
565 downloads
Prima::Printer 1.20

Prima::Printer 1.20


Prima::Printer is a system printing services. more>>
Prima::Printer is a system printing services.

SYNOPSIS

my $printer = $::application-> get_printer;
print "printing to ", $printer->printer, "...n";
$p-> options( Orientation => Landscape, PaperSize => A4);
if ( $p-> begin_doc) {
$p-> bar( 0, 0, 100, 100);
print "another page...n";
$p-> new_page;
$p-> ellipse( 100, 100, 200, 200);
(time % 1) ? # depending on the moon phase, print it or cancel out
$p-> end_doc :
$p-> abort_doc;
} else {
print "failedn";
}

Prima::Printer is a descendant of Prima::Drawable class. It provides access to the system printing services, where available. If the system provides no graphics printing, the default PostScript (tm) interface module Prima::PS::Printer is used instead.

<<less
Download (1.4MB)
Added: 2006-07-31 License: Perl Artistic License Price:
1180 downloads
Print OpenOffice 2 documents 1

Print OpenOffice 2 documents 1


Print OpenOffice 2 documents is a service menu that enables the user to right click on an OpenOffice 2 document and print it. more>>
Print OpenOffice 2 documents is a service menu that enables the user to right click on an OpenOffice 2 document and print it.

<<less
Download (MB)
Added: 2006-05-25 License: GPL (GNU General Public License) Price:
1247 downloads
Organize Status Bar 0.5.2

Organize Status Bar 0.5.2


Organize Status Bar is an extension which allows you to organize your status bar icons. more>>
Organize Status Bar is an extension which allows you to organize your status bar icons.

This extension will enable you to organize your status bar icons. You can now rearrange or remove any item (icon or text) in the Firefox status bar.

If your status bar is full and cluttered like mine was, give this a try.

<<less
Download (0.031MB)
Added: 2007-03-30 License: MPL (Mozilla Public License) Price:
939 downloads
Barcode::Code128 2.01

Barcode::Code128 2.01


Barcode::Code128 is a Perl module that can generate CODE 128 bar codes. more>>
Barcode::Code128 is a Perl module that can generate CODE 128 bar codes.

SYNOPSIS

use Barcode::Code128;

$code = new Barcode::Code128;

EXPORTS

By default, nothing. However there are a number of constants that represent special characters used in the CODE 128 symbology that you may wish to include. For example if you are using the EAN-128 or UCC-128 code, the string to encode begins with the FNC1 character. To encode the EAN-128 string "00 0 0012345 555555555 8", you would do the following:

use Barcode::Code128 FNC1;
$code = new Barcode::Code128;
$code->text(FNC1.00000123455555555558);

To have this module export one or more of these characters, specify them on the use statement or use the special token :all instead to include all of them. Examples:

use Barcode::Code128 qw(FNC1 FNC2 FNC3 FNC4 Shift);
use Barcode::Code128 qw(:all);

Here is the complete list of the exportable characters. They are assigned to high-order ASCII characters purely arbitrarily for the purposes of this module; the values used do not reflect any part of the CODE 128 standard. Warning: Using the CodeA, CodeB, CodeC, StartA, StartB, StartC, and Stop codes may cause your barcodes to be invalid, and be rejected by scanners. They are inserted automatically as needed by this module.

CodeA 0xf4 CodeB 0xf5 CodeC 0xf6
FNC1 0xf7 FNC2 0xf8 FNC3 0xf9
FNC4 0xfa Shift 0xfb StartA 0xfc
StartB 0xfd StartC 0xfe Stop 0xff

Barcode::Code128 generates bar codes using the CODE 128 symbology. It can generate images in PNG or GIF format using the GD package, or it can generate a text string representing the barcode that you can render using some other technology if desired.

The intended use of this module is to create a web page with a bar code on it, which can then be printed out and faxed or mailed to someone who will scan the bar code. The application which spurred its creation was an expense report tool, where the employee submitting the report would print out the web page and staple the receipts to it, and the Accounts Payable clerk would scan the bar code to indicate that the receipts were received.

The default settings for this module produce a large image that can safely be FAXed several times and still scanned easily. If this requirement is not important you can generate smaller image using optional parameters, described below.

If you wish to generate images with this module you must also have the GD.pm module (written by Lincoln Stein, and available from CPAN) installed. Version 1.20 or higher of GD generates a PNG file, due to issues with the GIF patent. If you want to create a GIF, you must use version 1.19 or earlier of GD. However, most browsers have no trouble with PNG files.

If the GD module is not present, you can still use the module, but you will not be able to use its functions for generating images. You can use the barcode() method to get a string of "#" and " " (hash and space) characters, and use your own image-generating routine with that as input.

To use the the GD module, you will need to install it along with this module. You can obtain it from the CPAN (Comprehensive Perl Archive Network) repository of your choice under the directory authors/id/LDS. Visit http://www.cpan.org/ for more information about CPAN. The GD home page is: http://stein.cshl.org/WWW/software/GD/GD.html

<<less
Download (0.014MB)
Added: 2007-07-24 License: Perl Artistic License Price:
834 downloads
PostScript::Graph::Bar 1.02

PostScript::Graph::Bar 1.02


PostScript::Graph::Bar Perl module can draw a bar chart on a postscript file. more>>
PostScript::Graph::Bar Perl module can draw a bar chart on a postscript file.

SYNOPSIS

Simplest

Take labels and values from a csv file and output as a bar chart on a postscript file.

use PostScript::Graph::Bar;

my $bar = new PostScript::Graph::Bar();
$bar->build_chart("survey.csv");
$bar->output("survey");

Typical

use PostScript::Graph::Bar;

my $bar = new PostScript::Graph::Bar(
file => {
paper => A4,
landscape => 1,
},
layout => {
background => [1, 1, 0.9],
heading => Test results,
},
y_axis => {
smallest => 4,
},
style => {
auto => [qw(green blue red)],
}
);

$bar->series_from_file( data.csv );
$bar->build_chart();
$bar->output( results );

The file data.csv has a row of headings followed by 4 rows of 10 items. This produces a bar chart with four groups of ten bars each. The groups are labelled with the first value in each row. The bars in each group are coloured ranging from brown through green and then shades of blue. A Key links the row of headings to each colour. In addition, the background is beige, a heading is placed above the chart and the y axis is not too crowded.

All options

use PostScript::Graph::Bar;

my $bar = new PostScript::Graph::Bar(
file => {
# Paper size, orientation etc
# See PostScript::File
},
layout => {
# General proportions, headings
# See PostScript::Graph::Paper
},
x_axis => {
# All settings for X axis
# See PostScript::Graph::Paper
},
y_axis => {
# All settings for Y axis
# See PostScript::Graph::Paper
},
style => {
# Appearance of bars
# See PostScript::Graph::Style
},
key => {
# Settings for any Key area
# See PostScript::Graph::Key
},
show_key => 1,
labels_row => 1,
);

<<less
Download (0.054MB)
Added: 2007-07-24 License: Perl Artistic License Price:
825 downloads
Torrent-Search Bar 1.0.1.21

Torrent-Search Bar 1.0.1.21


Torrent-Search Bar will improve your browsers capability greatly. It is designed as a Firefox addon that provides you the best way to search in more than 26 top torrent search engines. more>>
Torrent-Search Bar 1.0.1.21 will improve your browser's capability greatly. It is designed as a Firefox addon that provides you the best way to search in more than 26 top torrent search engines.

Major Features:

  1. Search Torrents in more than 31 Top Torrent Search sites - The Torrent Search engines in the toolbar are auto-updated
  2. Get RSS feeds with new torrents links - Fresh Torrents has tons of seeds...
  3. Links to the best private torrents communities
  4. E-Mail Notifier - Check multiple POP3, Gmail, Hotmail, Yahoo accounts for new mail It displays an icon in the toolbar and notifies you whenever new mail is waiting. It also optionally to play a WAV file.
  5. Highlight the Torrent Search Results - Make your life easier
  6. Online Anti Virus scanner - Cookie-Cleaner, History-Cleaner, Cache-Cleaner
  7. Popup Blocker - Block annoying pop-ups
  8. Weather - Offers forecasts for cities worldwide
  9. Auto Update - Help to keep your Toolbar current
  10. Supports:
    • Google Torrent search
    • MiniNova
    • Meganova
    • MoNova
    • biteNova
    • torrent valley
    • thepiratebay
    • TorrentReactor
    • Isohunt
    • And more...

Requirements:

  • Mozilla Firefox 1.0-3.0
  • Windows 2000/XP/Vista
<<less
Added: 2006-09-09 License: GPL Price: FREE
1 downloads
SaberNet DCS 2.0.3

SaberNet DCS 2.0.3


SaberNet DCS provides an enterprise labor data collection software. more>>
SaberNet DCS provides an enterprise labor data collection software.
SaberNet DCS is enterprise labor data collection software designed with efficiency in mind. Optimized for bar code input, it can automate and improve the accuracy of your time tracking. It works in stand-alone mode or with your ERP.
SaberNet DCS is a labor data collection system, designed to allow organizations to rapidly capture their labor data in real-time. Reporting and analyzing this data provides you with real visibility into the profitability of individual jobs, projects, employees and departments. Establishing reliable labor efficiencies enables you to more accurately estimate jobs and uncover opportunities.
Main features:
- Single swipe clock-in allows employees to rapidly clock in at a door terminal.
- Single swipe lunch / break allows you to suspend and resume an activity using a single barcode.
- Instant activity switching allows an employee to immediately end one task and begin another.
- One employee on multiple jobs (job ganging)
- Multiple employees on one job
- Indirect activities and set-up time tracking
- Web enabled administration allows managers and supervisors to reference the live active employee list, manage jobs, and edit time records from any browser
- Runs as either a stand-alone application (autonomous) or it can be integrated with an ERP/CRM/MIS or payroll system
- 2 modes of operation: shop floor automated (bar-codes and scanners) and desktop standalone (mouse and keyboard)
- Powerful reporting can be generated with Crystal Reports
<<less
Download (MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
981 downloads
Telephony::CountryDialingCodes 1.02

Telephony::CountryDialingCodes 1.02


Telephony::CountryDialingCodes is a Perl module that can convert international dialing codes to country codes and vice versa. more>>
Telephony::CountryDialingCodes is a Perl module that can convert international dialing codes to country codes and vice versa.

SYNOPSIS

# Usage method 1 (using object methods):
use Telephony::CountryDialingCodes;
my $o = new Telephony::CountryDialingCodes();
my $country_code = NL;
print "The dialing access code for country $country_code is " . $o->dialing_code($country_code) . "n";
my $dialing_code = 1;
my @country_codes = $o->country_codes($dialing_code);
print "The country code(s) for dialing access code $dialing_code is/are: " . join(,,@country_codes) . "n";


# Usage method 2 (using class methods):
use Telephony::CountryDialingCodes;
my $country_code = NL;
print "The dialing access code for country $country_code is " . Telephony::CountryDialingCodes->dialing_code($country_code) . "n";
my $dialing_code = 1;
my @country_codes = Telephony::CountryDialingCodes->country_codes($dialing_code);
print "The country code(s) for dialing access code $dialing_code is/are: " . join(,,@country_codes) . "n";

# Extracting an intl dialing code from an intl phone number:
use Telephony::CountryDialingCodes;
my $o = new Telephony::CountryDialingCodes();
my $dialing_code = $o->extract_dialing_code(+521234567890);
# $dialing_code will contain 52.

This class exports a method for determining a countrys international dialing code, and another method for doing the reverse: i.e. determining the country code(s) that belong(s) to a given international dialing code.

You can call these methods as class methods or you can create an object and call these methods as object methods. The difference is that if you call them in object context that the internal lookup tables are freed when the object is destroyed, otherwise if you call the methods in class context, then the internal lookup tables are global and will persist for the lifespan of the current process. Its not really a big deal which approach you choose, so for the sake of style, use the object method approach if you have no clue which is better.

<<less
Download (0.004MB)
Added: 2006-09-20 License: Perl Artistic License Price:
1130 downloads
VeriSign EV Green Bar Extension 1.0.1.2814

VeriSign EV Green Bar Extension 1.0.1.2814


VeriSign EV Green Bar Extension enables Firefox to recognize SSL servers that have implemented the EV Certificate. more>>
VeriSign EV Green Bar Extension enables Firefox to recognize SSL servers that have implemented the Extended Validation Certificate as currently supported by Microsoft in IE7. Installing this extension brings identical functionality to Firefox.

VeriSign EV Green Bar Extension add-on adds extended validation (EV) certificate support to Firefox. The address bar turns green and displays certificate owner and CA issuer information when the browser receives an EV certificate. Additional information is available when the certificate label in the address bar is clicked.

<<less
Download (0.030MB)
Added: 2007-07-23 License: MPL (Mozilla Public License) Price:
853 downloads
DBIx::Recordset 0.26

DBIx::Recordset 0.26


DBIx::Recordset is a Perl extension for DBI recordsets. more>>
DBIx::Recordset is a Perl extension for DBI recordsets.

SYNOPSIS

use DBIx::Recordset;

# Setup a new object and select some recods...
*set = DBIx::Recordset -> Search ({!DataSource => dbi:Oracle:....,
!Table => users,
$where => name = ? and age > ?,
$values => [richter, 25] }) ;

# Get the values of field foo ...
print "First Records value of foo is $set[0]{foo}n" ;
print "Second Records value of foo is $set[1]{foo}n" ;
# Get the value of the field age of the current record ...
print "Age is $set{age}n" ;

# Do another select with the already created object...
$set -> Search ({name => bar}) ;

# Show the result...
print "All users with name bar:n" ;
while ($rec = $set -> Next)
{
print $rec -> {age} ;
}

# Setup another object and insert a new record
*set2 = DBIx::Recordset -> Insert ({!DataSource => dbi:Oracle:....,
!Table => users,
name => foo,
age => 25 }) ;


# Update this record (change age from 25 to 99)...
$set -> Update ({age => 99}, {name => foo}) ;

DBIx::Recordset is a perl module for abstraction and simplification of database access.

The goal is to make standard database access (select/insert/update/delete) easier to handle and independend of the underlying DBMS. Special attention is made on web applications to make it possible to handle the state-less access and to process the posted data of formfields, but DBIx::Recordset is not limited to web applications.

DBIx::Recordset uses the DBI API to access the database, so it should work with every database for which a DBD driver is available (see also DBIx::Compat).
Most public functions take a hash reference as parameter, which makes it simple to supply various different arguments to the same function. The parameter hash can also be taken from a hash containing posted formfields like those available with CGI.pm, mod_perl, HTML::Embperl and others.
Before using a recordset it is necessary to setup an object. Of course the setup step can be made with the same function call as the first database access, but it can also be handled separately.

Most functions which set up an object return a typglob. A typglob in Perl is an object which holds pointers to all datatypes with the same name. Therefore a typglob must always have a name and cant be declared with my. You can only use it as global variable or declare it with local. The trick for using a typglob is that setup functions can return a reference to an object, an array and a hash at the same time.

The object is used to access the objects methods, the array is used to access the records currently selected in the recordset and the hash is used to access the current record.

If you dont like the idea of using typglobs you can also set up the object, array and hash separately, or just set the ones you need.

<<less
Download (0.092MB)
Added: 2007-07-02 License: Perl Artistic License Price:
844 downloads
Photo Grid Print 0.2

Photo Grid Print 0.2


Photo Grid Print is a software which can print photos in a grid on a single page. more>>
Photo Grid Print is a software which can print photos in a grid on a single page.

Photo Grid Print is a dialog window that lets you print a set of photos in a grid on a single page. You set the number of rows and columns in the grid. It figures out an efficient layout to maximize the photo size and minimize the paper used, rotating photos as needed. You can tell it to fill the page with your photo(s), repeating them as needed.

Once installed, the dialog is started by selecting some photos in the Gnome file manager (nautilus) or in the F-Spot application: right-click > Open With... > Open with Photo Grid Print.

Photo Grid Print was eritten using Python, GTK+ and Glade.

<<less
Download (0.005MB)
Added: 2007-03-02 License: MIT/X Consortium License Price:
974 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5