postscript.
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 217
Python Web Graph Generator 2.40
Python Web Graph Generator is a threaded Web graph (Power law random graph) generator. more>>
Python Web Graph Generator is a threaded Web graph (Power law random graph) generator. It can generate a synthetic Web graph of about one million nodes in a few minutes on a desktop machine.
This software implements a threaded variant of the RMAT algorithm. A little tweak can produce graphs representing social networks or community networks.
Examples:
Getting help
$./genwebgraph.py --help
Generating graph using default settings
$ ./genwebgraph.py --threads=1
Generating a 1000-vertex and 1000-egde graph using 5 threads and storing it in ~/mygraph.pyg
$ ./genwebgraph.py --threads=5 --max-vertices=1000 --max-edges=1000 --output=~/mygraph.pyg
Storing in dot compatible output and making a postscript file
$ ./genwebgraph.py --output=~/mygraph.pyg --format=dot
$ dot -Tps ~/mygraph.pyg -o mygraph.ps
Enhancements:
- The base library PyGEL is available as an independent Python module.
<<lessThis software implements a threaded variant of the RMAT algorithm. A little tweak can produce graphs representing social networks or community networks.
Examples:
Getting help
$./genwebgraph.py --help
Generating graph using default settings
$ ./genwebgraph.py --threads=1
Generating a 1000-vertex and 1000-egde graph using 5 threads and storing it in ~/mygraph.pyg
$ ./genwebgraph.py --threads=5 --max-vertices=1000 --max-edges=1000 --output=~/mygraph.pyg
Storing in dot compatible output and making a postscript file
$ ./genwebgraph.py --output=~/mygraph.pyg --format=dot
$ dot -Tps ~/mygraph.pyg -o mygraph.ps
Enhancements:
- The base library PyGEL is available as an independent Python module.
Download (0.60MB)
Added: 2007-08-03 License: The Apache License 2.0 Price:
818 downloads
Evince 0.9.3
Evince is a document viewer for multiple document formats like pdf, postscript, and many others. more>>
Evince is a document viewer for multiple document formats like pdf, postscript, and many others. Evinces goal is to replace the multiple document viewers that exist on the GNOME Desktop, like gpdf, ggv, and xpdf with a single simple application.
Main features:
Supported formats:
- PDF
- Postscript
- DJVU
- DVI
- Multipage tiff
Plans to include:
- Comic book (*.cbr)
- Powerpoint presentations
- OO Impress presentations
Evince has a lot of useful features, like indexing, fast searching, easy reading. It also provides nice thumbnails for all supported document types in nautilus.
Search
Integrated search displaying the number of results found and highlights the results on the page.
Page Thumbnails
Thumbnails of pages show quick reference for where youd like to go in a document. Evinces thumbnails are available in the left sidebar of the viewer.
Page Indexing
For documents that support indexes Evince gives the option to show the document index for quick jumping from one section to another.
<<lessMain features:
Supported formats:
- Postscript
- DJVU
- DVI
- Multipage tiff
Plans to include:
- Comic book (*.cbr)
- Powerpoint presentations
- OO Impress presentations
Evince has a lot of useful features, like indexing, fast searching, easy reading. It also provides nice thumbnails for all supported document types in nautilus.
Search
Integrated search displaying the number of results found and highlights the results on the page.
Page Thumbnails
Thumbnails of pages show quick reference for where youd like to go in a document. Evinces thumbnails are available in the left sidebar of the viewer.
Page Indexing
For documents that support indexes Evince gives the option to show the document index for quick jumping from one section to another.
Download (2.0MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
819 downloads
Other version of Evince
License:GPL (GNU General Public License)
gjots 2.3.7
gjots marshals and organizes text notes in a convenient, hierarchical way. more>>
gjots marshals and organizes text notes in a convenient, hierarchical way.
You can use gjots2 to organise your jottings into a tree structure, adding thoughts and miscellany as you go. You can get it to spit out HTML, XML, postscript, pdf, man etc etc (see the online manual for an example of the HTML conversion).
You can use it to "mind-map" your compositions - write down all your thoughts and then start organising them into a tree. By manipulating the tree you can easily reorder your thoughts and structure them appropriately.
Its a bit like the KDE program kjots but it supports a hierarchy of folders and the folder hierarchy is always visible. Of course, its also written primarily for gnome/GTK-2 rather than KDE.
<<lessYou can use gjots2 to organise your jottings into a tree structure, adding thoughts and miscellany as you go. You can get it to spit out HTML, XML, postscript, pdf, man etc etc (see the online manual for an example of the HTML conversion).
You can use it to "mind-map" your compositions - write down all your thoughts and then start organising them into a tree. By manipulating the tree you can easily reorder your thoughts and structure them appropriately.
Its a bit like the KDE program kjots but it supports a hierarchy of folders and the folder hierarchy is always visible. Of course, its also written primarily for gnome/GTK-2 rather than KDE.
Download (MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
817 downloads
DocBook Doclet 4.1.10
DocBook Doclet project creates DocBook XML from Java source documentation or HTML files. more>>
DocBook Doclet project creates DocBook XML from Java source documentation or HTML files. It is helpful if you want to create reference handbooks of your API.
Normally it is used with the Javadoc tool but it can also be used as a standalone application to convert HTML to DocBook.
Additionally it comes with a Swing application to manage documentation projects and to transform the resulting DocBook files to PDF, Postscript, HTML, or JavaHelp.
<<lessNormally it is used with the Javadoc tool but it can also be used as a standalone application to convert HTML to DocBook.
Additionally it comes with a Swing application to manage documentation projects and to transform the resulting DocBook files to PDF, Postscript, HTML, or JavaHelp.
Download (40.8MB)
Added: 2007-07-25 License: GPL (GNU General Public License) Price:
832 downloads
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,
);
<<lessSYNOPSIS
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,
);
Download (0.054MB)
Added: 2007-07-24 License: Perl Artistic License Price:
825 downloads
YajHFC 0.3.4
YajHFC (Yet Another Java Hylafax Client) is client for the HylaFAX fax server written completely in Java. more>>
YajHFC (Yet Another Java Hylafax Client) is client for the HylaFAX fax server written completely in Java.
YajHFC started out as a kind of "exercise" in Java programming and is still in a beta state, but should be already quite useable.
Main features:
- Faxing documents in Postscript or PDF format
- Polling faxes
- Support for generating cover pages from templates
- Viewing sent and received faxes
- Phone book
- Visible table columns may be selected in a dialog
- Supports two languages: English and German
<<lessYajHFC started out as a kind of "exercise" in Java programming and is still in a beta state, but should be already quite useable.
Main features:
- Faxing documents in Postscript or PDF format
- Polling faxes
- Support for generating cover pages from templates
- Viewing sent and received faxes
- Phone book
- Visible table columns may be selected in a dialog
- Supports two languages: English and German
Download (0.28MB)
Added: 2007-07-20 License: GPL (GNU General Public License) Price:
828 downloads
GuitarTeX 3.1.0
GuitarTeX is a tool for guitarists who want to print good looking and easy to play song sheets. more>>
GuitarTeX is a tool for guitarists who want to print good looking and easy to play song sheets or song books from their chord or chordpro files. It uses the well known chord format with several extensions. The program was developed on a Linux system, but it should run on any other Unix system which has a Perl/TK environment.
It is based upon an idea of Martin Leclerc and Mario Dorion from Canada and their program Chord (Version 3.5 from 1993). To use GuitarTeX, you need to have knowledge of the Chord program (explained later). Though the LaTeX text processing system is used by GuitarTeX, you dont have to know very much about it. GuitarTeX produces Postscript or PDF output automatically (if you want). The Chord directives supplied by GuitarTeX are described in Chapter 5.
Main features:
- Graphical user interface with integrated editor and syntax highlighting
- Prints good looking song sheets including guitar chords without using monospace fonts
- Output formats: LaTeX, Postscript and PDF
- Compatible with ChordPro format, import function for ascii format
- Support for music typesetting with the LaTeX packages MusixTeX, MusixLyr and TabDefs
- Flexible page layout (paper size, margins...)
- User defined colors for different parts of a song (e.g. verse, chorus)
- Optional printing of chord symbols at the end of a song
- Transpose up or down your song by mouse clicks
- Creates single song sheets or complete song books with a title page, table of
- contents, headlines with page numbering, chord table and index
- Supports ASCII tablature and the built in tablature directives for guitar and bass tabs
- Support for multiple languages (if you dont find your langauage, you can help the
- author to add it)
- Runs on Linux operating system (it should run on any Unix system that is supported by Perl/TK and LaTeX, but it is not tested)
- Setup your song book project from single song files with the include directive
- LaTeX commands may be used in Chordpro files (for the professionals)
Enhancements:
- Support to create song books
- Several Bugfixes
<<lessIt is based upon an idea of Martin Leclerc and Mario Dorion from Canada and their program Chord (Version 3.5 from 1993). To use GuitarTeX, you need to have knowledge of the Chord program (explained later). Though the LaTeX text processing system is used by GuitarTeX, you dont have to know very much about it. GuitarTeX produces Postscript or PDF output automatically (if you want). The Chord directives supplied by GuitarTeX are described in Chapter 5.
Main features:
- Graphical user interface with integrated editor and syntax highlighting
- Prints good looking song sheets including guitar chords without using monospace fonts
- Output formats: LaTeX, Postscript and PDF
- Compatible with ChordPro format, import function for ascii format
- Support for music typesetting with the LaTeX packages MusixTeX, MusixLyr and TabDefs
- Flexible page layout (paper size, margins...)
- User defined colors for different parts of a song (e.g. verse, chorus)
- Optional printing of chord symbols at the end of a song
- Transpose up or down your song by mouse clicks
- Creates single song sheets or complete song books with a title page, table of
- contents, headlines with page numbering, chord table and index
- Supports ASCII tablature and the built in tablature directives for guitar and bass tabs
- Support for multiple languages (if you dont find your langauage, you can help the
- author to add it)
- Runs on Linux operating system (it should run on any Unix system that is supported by Perl/TK and LaTeX, but it is not tested)
- Setup your song book project from single song files with the include directive
- LaTeX commands may be used in Chordpro files (for the professionals)
Enhancements:
- Support to create song books
- Several Bugfixes
Download (MB)
Added: 2007-07-15 License: GPL (GNU General Public License) Price:
834 downloads
Barcode Writer in Pure Postscript 2007-07-02
Barcode Writer in Pure Postscript implements the printing of many barcode formats entirely within level 2 PostScript. more>>
Barcode Writer in Pure Postscript is an award-winning open source project, as used by NASA, that facilitates the printing of all major barcode symbologies entirely within level 2 PostScript.
Hence the process of generating a printed barcode representing a given input is performed entirely within the printer (or print system) so that it is no longer the responsibility of your application or a library.
There is no need for any barcode fonts and the flexibility gained by using direct PostScript allows you to avoid re-implementing barcode generator code, or migrating to new libraries, whenever your project language needs change.
Barcode Writer in Pure Postscript project makes including any barcode within a PostScript document as simple as inserting the following directive:
(1-86074-271) (includetext) isbn barcode
The project generates all of the major types of one-dimensional barcode supported by the vast majority of barcode scanners.
The current list of supported symbologies includes: EAN-13, EAN-8, UPC-A, UPC-E, EAN-5 & EAN-2 (EAN/UPC add-ons), ISBN (including ISBN-13), Code 128 (A, B & C, including EAN-128), Code 39 Extended, Code 93 Extended, Interleaved 2 of 5 (including ITF-14), Code 2 of 5, Codabar, MSI, Plessey, PostNet, Royal Mail (RM4SCC), FIM symbols.
This list is growing all the time. If it doesnt contain the format you are looking for then make a request via the mailing list and check back soon.
Since this resource is written in PostScript and interpretted within the virtual machine of a printer it is compatible with virtually any operating system and hardware platform, for example Windows 95/XP on i386, Mac OS X/Linux on Power PC, Solaris on SPARC, and OpenVMS on Alpha AXP.
Enhancements:
- Support for the MaxiCode 2D barcode was added.
<<lessHence the process of generating a printed barcode representing a given input is performed entirely within the printer (or print system) so that it is no longer the responsibility of your application or a library.
There is no need for any barcode fonts and the flexibility gained by using direct PostScript allows you to avoid re-implementing barcode generator code, or migrating to new libraries, whenever your project language needs change.
Barcode Writer in Pure Postscript project makes including any barcode within a PostScript document as simple as inserting the following directive:
(1-86074-271) (includetext) isbn barcode
The project generates all of the major types of one-dimensional barcode supported by the vast majority of barcode scanners.
The current list of supported symbologies includes: EAN-13, EAN-8, UPC-A, UPC-E, EAN-5 & EAN-2 (EAN/UPC add-ons), ISBN (including ISBN-13), Code 128 (A, B & C, including EAN-128), Code 39 Extended, Code 93 Extended, Interleaved 2 of 5 (including ITF-14), Code 2 of 5, Codabar, MSI, Plessey, PostNet, Royal Mail (RM4SCC), FIM symbols.
This list is growing all the time. If it doesnt contain the format you are looking for then make a request via the mailing list and check back soon.
Since this resource is written in PostScript and interpretted within the virtual machine of a printer it is compatible with virtually any operating system and hardware platform, for example Windows 95/XP on i386, Mac OS X/Linux on Power PC, Solaris on SPARC, and OpenVMS on Alpha AXP.
Enhancements:
- Support for the MaxiCode 2D barcode was added.
Download (0.18MB)
Added: 2007-07-03 License: MIT/X Consortium License Price:
847 downloads
Veusz 0.99.0
Veusz is a scientific plotting package, designed to create publication-ready Postscript output. more>>
Veusz is a scientific plotting package written in Python. It uses PyQt (Wiki) and Numarray. Veusz is designed to produce publication-ready Postscript output.
Veusz provides a GUI, command line and scripting Python interface to its plotting facilities. The plots are built using an object-based system to provide a consistent interface.
Main features:
- X-Y plots (with errorbars)
- Stepped plots (for histograms)
- Line plots
- Function plots
- Stacked plots and arrays of plots
- Plot keys
- Plot labels
- LaTeX-like formatting for text
- EPS output
- Simple data importing
- Scripting interface
- Save/Load plots
- Dataset manipulation
- Embed Veusz within other programs
Enhancements:
- The application was largely rewritten and is now based on Qt4/PyQt4 and Numpy rather than Qt3 and numarray.
- Linux and Windows binaries are available.
- It now features a much improved user interface with separate formatting and properties and a better import dialog.
- It can export PDF and PNG files natively.
- Other improvements include anti-aliasing on screen, INF/NaN support, color bars, and different sized subgraphs in a grid.
<<lessVeusz provides a GUI, command line and scripting Python interface to its plotting facilities. The plots are built using an object-based system to provide a consistent interface.
Main features:
- X-Y plots (with errorbars)
- Stepped plots (for histograms)
- Line plots
- Function plots
- Stacked plots and arrays of plots
- Plot keys
- Plot labels
- LaTeX-like formatting for text
- EPS output
- Simple data importing
- Scripting interface
- Save/Load plots
- Dataset manipulation
- Embed Veusz within other programs
Enhancements:
- The application was largely rewritten and is now based on Qt4/PyQt4 and Numpy rather than Qt3 and numarray.
- Linux and Windows binaries are available.
- It now features a much improved user interface with separate formatting and properties and a better import dialog.
- It can export PDF and PNG files natively.
- Other improvements include anti-aliasing on screen, INF/NaN support, color bars, and different sized subgraphs in a grid.
Download (0.62MB)
Added: 2007-05-24 License: GPL (GNU General Public License) Price:
883 downloads
xbmcmail-imap build264
xbmcmail-imap is an IMAP/IMAPS email reader for the XBox using the XBox Media Centers builtin Python engine. more>>
xbmcmail-imap is an IMAP/IMAPS email reader for the XBox using the XBox Media Centers builtin Python engine.
xbmcmail-imap supports attachments, folders, mail management (copy, move, delete), printing (text or postscript), background polling, multiple accounts, RTF and HTML converters, and more.
Enhancements:
- fixed skinning issues with XBMC 2.x
- bug fixes for process dialog handling
- IMAP compatibility issues
- better control handling
- minor corrections
<<lessxbmcmail-imap supports attachments, folders, mail management (copy, move, delete), printing (text or postscript), background polling, multiple accounts, RTF and HTML converters, and more.
Enhancements:
- fixed skinning issues with XBMC 2.x
- bug fixes for process dialog handling
- IMAP compatibility issues
- better control handling
- minor corrections
Download (0.15MB)
Added: 2007-05-21 License: GPL (GNU General Public License) Price:
890 downloads
UMLGraph 4.8
UMLGraph facilitates the declarative specification and drawing of UML class and sequence diagrams. more>>
UMLGraph facilitates the declarative specification and drawing of UML class and sequence diagrams.
One can specify a class design using the Java syntax complemented by Javadoc tags.
Running the UmlGraph doclet on the specification generates a Graphviz diagram specification that can be automatically processed to create Postscript, GIF, SVG, JPEG, fig, or Framemaker drawings.
Similarly, sequence diagrams are specified using declarative pic macros and compiled with the GNU plotutils pic2plot program into a PNG, PNM, (pseudo) GIF, SVG, AI, Postscript, CGM, FIG, PCL, HPGL, Regis, or TEK drawing.
Enhancements:
- This version improves its invocation interface so that it can be run directly as a jar file.
- It has support for sending results to the standard output for direct piping into dot.
- The distribution includes an example shell script and batch file for invoking UMLGraph.
<<lessOne can specify a class design using the Java syntax complemented by Javadoc tags.
Running the UmlGraph doclet on the specification generates a Graphviz diagram specification that can be automatically processed to create Postscript, GIF, SVG, JPEG, fig, or Framemaker drawings.
Similarly, sequence diagrams are specified using declarative pic macros and compiled with the GNU plotutils pic2plot program into a PNG, PNM, (pseudo) GIF, SVG, AI, Postscript, CGM, FIG, PCL, HPGL, Regis, or TEK drawing.
Enhancements:
- This version improves its invocation interface so that it can be run directly as a jar file.
- It has support for sending results to the standard output for direct piping into dot.
- The distribution includes an example shell script and batch file for invoking UMLGraph.
Download (0.057MB)
Added: 2007-05-10 License: BSD License Price:
900 downloads
mozilla2ps 0.6
mozilla2ps project is a quick and gross hack to convert html to postscript pages in an unattended manner. more>>
mozilla2ps project is a quick and gross hack to convert html to postscript pages in an unattended manner. I needed to convert a lot of html pages to postscript and wasnt really satisfied with html2ps, so I went ahead and toyed around with xulrunner and friends.
In order to use mozilla2ps you need Xul Runner.
Usage and configuration
Make sure you have Xulrunner correctly installed.
xulrunner --install-app mozilla2ps-0.1.xulapp
xulrunner --app application.ini file:///tmp/foo.html /tmp/foo.ps
xulrunner --app application.ini http://www.lwn.net /tmp/lwn.ps ;
ps2pdf /tmp/lwn.ps; evince lwn.pdf
I use it with this chmtopdf.py script in order to convert .chm files to pdf using only free tools.
Bugs
mozilla2ps has at least the following bugs:
Allow configurable paper, size, margins etc.
Remove the setTimeOut workaround
Enhancements:
- This release adds a number of options to format printing: landscape/portrait, margins, bgcolor, and bgimage.
<<lessIn order to use mozilla2ps you need Xul Runner.
Usage and configuration
Make sure you have Xulrunner correctly installed.
xulrunner --install-app mozilla2ps-0.1.xulapp
xulrunner --app application.ini file:///tmp/foo.html /tmp/foo.ps
xulrunner --app application.ini http://www.lwn.net /tmp/lwn.ps ;
ps2pdf /tmp/lwn.ps; evince lwn.pdf
I use it with this chmtopdf.py script in order to convert .chm files to pdf using only free tools.
Bugs
mozilla2ps has at least the following bugs:
Allow configurable paper, size, margins etc.
Remove the setTimeOut workaround
Enhancements:
- This release adds a number of options to format printing: landscape/portrait, margins, bgcolor, and bgimage.
Download (0.011MB)
Added: 2007-05-05 License: GPL (GNU General Public License) Price:
906 downloads
FontForge 20070501
FontForge allows you to edit outline and bitmap fonts. more>>
FontForge is an outline font editor that lets you create your own postscript, truetype, opentype, cid-keyed, multi-master, cff, svg and bitmap (bdf) fonts, or edit existing ones.
Also lets you convert one format to another. FontForge has support for many macintosh font formats.
FontForges user interface has been localized for: (English), Russian, Japanese, French, Italian, Spanish.
With the appropriate libraries, FontForge can import png, tiff, and gif images to act as character backgrounds for tracing purposes (FontForge can import bmp and xbm formats without external libraries).
With libxml2 FontForge can read SVG fonts. With the freetype library FontForge will do a better job making bitmap characters for you.
None is required for the proper compilation/execution of FontForge, if the libraries are not present they will not be used.
Enhancements:
- Support has been added for version 2 of the Spline Font DB format.
<<lessAlso lets you convert one format to another. FontForge has support for many macintosh font formats.
FontForges user interface has been localized for: (English), Russian, Japanese, French, Italian, Spanish.
With the appropriate libraries, FontForge can import png, tiff, and gif images to act as character backgrounds for tracing purposes (FontForge can import bmp and xbm formats without external libraries).
With libxml2 FontForge can read SVG fonts. With the freetype library FontForge will do a better job making bitmap characters for you.
None is required for the proper compilation/execution of FontForge, if the libraries are not present they will not be used.
Enhancements:
- Support has been added for version 2 of the Spline Font DB format.
Download (3.3MB)
Added: 2007-05-03 License: BSD License Price:
924 downloads
Chemtool 1.6.10
Chemtool is a X11/GTK-based chemical formula drawing program. more>>
Chemtool project is a small program for drawing chemical structures on Linux and Unix systems using the GTK toolkit under X11.
Chemtool relies on transfig by Brian Smith for postscript printing and exporting files in PicTeX and EPS formats. Its companion program, XFig, is recommended for enhancing the output of chemtool, and for creation of 2D diagrams and schematics in general.
Both are included with most distributions of Linux, and are available through a number of websites including www.xfig.org. If you want to import chemtool drawings into word processing programs other than LaTeX, you will probably want to add a preview bitmap to them, as neither StarOffice/OpenOffice nor that software from Redmond seem to be able to display postscript inserts on screen without them.
For this purpose, using either ps2epsi, which comes with ghostscript, or epstool, a part of gsview is recommended. Since chemtool-1.6, this option is supported directly (through the equivalent function offered by recent versions of transfig).
Chemtool was originally written by Thomas Volk, then a student of chemistry and biology at the university of Ulm, Germany. His version, which was described in an article in the german periodical LinuxMagazin, was using plain X11.
The bond types available in chemtool are:
- a single bond
- a double bond (with one line shorter than the other)
- a double bond (having the shorter line on the opposite side)
- a centered double bond
- a triple bond (with the flanking lines shorter than the center)
- a wedge-shaped bond
- a dashed wedge-shaped bond
- a wavy line
- a dashed wide line
- a half arrow
- an arrow
- a wide bond
- a circle
- a dotted line
- a single bond that cuts out a segment from any bond it crosses
- a triple bond (with equal line lengths)
- a quadruple bond
Enhancements:
- PNG export, kprinter support, and a few new template structures were added.
- Screen rendering of complex labels was improved.
- Several problems with text input in UTF8-enabled locales were fixed.
- Arrowhead size in EPS output and the appearance of arrowheads, superscripts, and national characters in SVG output were fixed.
<<lessChemtool relies on transfig by Brian Smith for postscript printing and exporting files in PicTeX and EPS formats. Its companion program, XFig, is recommended for enhancing the output of chemtool, and for creation of 2D diagrams and schematics in general.
Both are included with most distributions of Linux, and are available through a number of websites including www.xfig.org. If you want to import chemtool drawings into word processing programs other than LaTeX, you will probably want to add a preview bitmap to them, as neither StarOffice/OpenOffice nor that software from Redmond seem to be able to display postscript inserts on screen without them.
For this purpose, using either ps2epsi, which comes with ghostscript, or epstool, a part of gsview is recommended. Since chemtool-1.6, this option is supported directly (through the equivalent function offered by recent versions of transfig).
Chemtool was originally written by Thomas Volk, then a student of chemistry and biology at the university of Ulm, Germany. His version, which was described in an article in the german periodical LinuxMagazin, was using plain X11.
The bond types available in chemtool are:
- a single bond
- a double bond (with one line shorter than the other)
- a double bond (having the shorter line on the opposite side)
- a centered double bond
- a triple bond (with the flanking lines shorter than the center)
- a wedge-shaped bond
- a dashed wedge-shaped bond
- a wavy line
- a dashed wide line
- a half arrow
- an arrow
- a wide bond
- a circle
- a dotted line
- a single bond that cuts out a segment from any bond it crosses
- a triple bond (with equal line lengths)
- a quadruple bond
Enhancements:
- PNG export, kprinter support, and a few new template structures were added.
- Screen rendering of complex labels was improved.
- Several problems with text input in UTF8-enabled locales were fixed.
- Arrowhead size in EPS output and the appearance of arrowheads, superscripts, and national characters in SVG output were fixed.
Download (0.41MB)
Added: 2007-04-24 License: GPL (GNU General Public License) Price:
914 downloads
paps 0.6.8
paps is a text to PostScript converter that works through Pango. more>>
paps is a text to PostScript converter that works through Pango. Its input is a UTF-8 encoded text file and it outputs vectorized PostScript that is quite compressed.
paps may be used for printing any complex script supported by Pango. paps supports landscape and portrait printing as well as multiple columns.
SYNTAX
paps [--landscape] [--columns cl] [--font_scale fs] [--family f] [--rtl]
OPTIONS
--landscape
Landscape output. Default is portrait.
--column cl
Number of columns output. Default is 1.
--fontscale fs
Font scaling. Default is 12.
--family f
Pango ft2 font family. Default is sans.
--rtl
Do rtl layout.
--svg
Output svg. Default is postscript.
<<lesspaps may be used for printing any complex script supported by Pango. paps supports landscape and portrait printing as well as multiple columns.
SYNTAX
paps [--landscape] [--columns cl] [--font_scale fs] [--family f] [--rtl]
OPTIONS
--landscape
Landscape output. Default is portrait.
--column cl
Number of columns output. Default is 1.
--fontscale fs
Font scaling. Default is 12.
--family f
Pango ft2 font family. Default is sans.
--rtl
Do rtl layout.
--svg
Output svg. Default is postscript.
Download (0.41MB)
Added: 2007-04-15 License: LGPL (GNU Lesser General Public License) Price:
922 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above postscript. search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed