afe proguard 7
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1237
ProGuard 3.9 / 4.0 Beta
ProGuard is a Java class file shrinker and obfuscator. more>>
ProGuard is a free Java class file shrinker, optimizer, and obfuscator. ProGuard project can detect and remove unused classes, fields, methods, and attributes. It can then optimize bytecode and remove unused instructions.
Finally, it can rename the remaining classes, fields, and methods using short meaningless names. The resulting jars are smaller and harder to reverse-engineer.
More compact jar files also means smaller storage requirements, faster transfer of applications across networks, faster loading, and smaller memory footprints.
ProGuards main advantage compared to other Java obfuscators is probably its compact template-based configuration. A few intuitive command line options or a simple configuration file are usually sufficient. For instance, the following configuration option preserves all applets in a jar:
-keep public class * extends java.applet.Applet
The user manual explains all available options and shows more examples of this powerful configuration style.
ProGuard is fast. It only takes seconds to process programs and libraries of several megabytes. The results section presents actual figures for a number of applications.
ProGuard is a command-line tool with an optional graphical user interface. It also comes with plugins for Ant and for the J2ME Wireless Toolkit.
ProGuard is a Java class file shrinker, optimizer, and obfuscator. The shrinking step detects and removes unused classes, fields, methods, and attributes. The optimization step analyzes and optimizes the bytecode of the methods. The obfuscation step renames the remaining classes, fields, and methods using short meaningless names. The resulting jars are smaller and harder to reverse-engineer.
ProGuard can also be used to list unused fields and methods in an application, and to print out the internal structure of class files.
ProGuard typically reads the input jars (or wars, ears, zips, or directories). It then shrinks, optimizes, and obfuscates them. It then writes the results to one or more output jars (or wars, ears, zips, or directories). The input jars can optionally contain resource files. ProGuard copies all non-class resource files from the input jars to the output jars. Their names and contents remain unchanged.
ProGuard requires the library jars (or wars, ears, zips, or directories) of the input jars to be specified. It can then reconstruct class hierarchies and other class dependencies, which are necessary for proper shrinking, optimization, and obfuscation. The library jars themselves always remain unchanged. You should still put them in the class path of your final application.
In order to determine which code has to be preserved and which code can be discarded or obfuscated, you have to specify one or more entry points to your code. These entry points are typically classes with main methods, applets, midlets, etc.
- In the shrinking step, ProGuard starts from these seeds and recursively determines which classes and class members are used. All other classes and class members are discarded.
- In the optimization step, ProGuard further optimizes the code. Among other optimizations, classes and methods that are not entry points can be made final, and some methods may be inlined.
- In the obfuscation step, ProGuard renames classes and class members that are not entry points. In this entire process, keeping the entry points ensures that they can still be accessed by their original names.
Any classes or class members of your code that are created or invoked dynamically (that is, by name) have to be specified as entry points too. It is generally impossible to determine these cases automatically, but ProGuard will offer some suggestions if keeping some classes or class members appears necessary. For proper results, you should at least be somewhat familiar with the code that you are processing.
ProGuard does handle Class.forName("SomeClass") and SomeClass.class constructs automatically. The referenced classes are preserved in the shrinking phase, and the string arguments are properly replaced in the obfuscation phase. With variable string arguments, it is generally impossible to determine their possible values (they might be read from a configuration file, for instance).
However, as mentioned, ProGuard will note constructs like "(SomeClass)Class.forName(variable).newInstance()". These might be an indication that the class or interface SomeClass and/or its implementations may need to be preserved. You can then adapt your configuration accordingly.
Whats New in 3.9 Stable Release:
- This release fixes a number of bugs.
- Notably, ".class" constructs compiled in Java 6 are now handled correctly.
- The optimization step now avoids a possible division by 0 and correctly processes local variables with indices larger than 255.
- The documentation and examples have been updated.
Whats New in 4.0 Beta Development Release:
- Added preverifier for Java 6 and Java Micro Edition, with new option -dontpreverify.
- Added new option -target to modify java version of processed class files.
- Made -keep options more orthogonal and flexible, with option modifiers allowshrinking, allowoptimization, and allowobfuscation.
- Added support for configuration by means of annotations.
- Improved shrinking of unused annotations.
- Added check on modification times of input and output, to avoid unnecessary processing, with new option -forceprocessing.
- Added new options -flattenpackagehierarchy and -repackageclasses (replacing -defaultpackage) to control obfuscation of packages names.
- Added new options -adaptresourcefilenames and -adaptresourcefilecontents, with file filters, to update resource files corresponding to obfuscated class names.
- Now respecting naming rule for nested class names (EnclosingClass$InnerClass) in obfuscation step, if InnerClasses attributes or EnclosingMethod attributes are being kept.
- Added new inter-procedural optimizations: method inlining and propagation of constant fields, constant arguments, and constant return values.
- Added optimized local variable allocation.
- Added over 250 new peephole optimizations.
- Improved making classes and class members public or protected.
- Now printing notes on suspiciously unkept classes in parameters of specified methods.
- Now printing notes for class names that dont seem to be fully qualified.
- Added support for uppercase filename extensions.
- Rewritten class file I/O code.
- Updated documentation and examples.
<<lessFinally, it can rename the remaining classes, fields, and methods using short meaningless names. The resulting jars are smaller and harder to reverse-engineer.
More compact jar files also means smaller storage requirements, faster transfer of applications across networks, faster loading, and smaller memory footprints.
ProGuards main advantage compared to other Java obfuscators is probably its compact template-based configuration. A few intuitive command line options or a simple configuration file are usually sufficient. For instance, the following configuration option preserves all applets in a jar:
-keep public class * extends java.applet.Applet
The user manual explains all available options and shows more examples of this powerful configuration style.
ProGuard is fast. It only takes seconds to process programs and libraries of several megabytes. The results section presents actual figures for a number of applications.
ProGuard is a command-line tool with an optional graphical user interface. It also comes with plugins for Ant and for the J2ME Wireless Toolkit.
ProGuard is a Java class file shrinker, optimizer, and obfuscator. The shrinking step detects and removes unused classes, fields, methods, and attributes. The optimization step analyzes and optimizes the bytecode of the methods. The obfuscation step renames the remaining classes, fields, and methods using short meaningless names. The resulting jars are smaller and harder to reverse-engineer.
ProGuard can also be used to list unused fields and methods in an application, and to print out the internal structure of class files.
ProGuard typically reads the input jars (or wars, ears, zips, or directories). It then shrinks, optimizes, and obfuscates them. It then writes the results to one or more output jars (or wars, ears, zips, or directories). The input jars can optionally contain resource files. ProGuard copies all non-class resource files from the input jars to the output jars. Their names and contents remain unchanged.
ProGuard requires the library jars (or wars, ears, zips, or directories) of the input jars to be specified. It can then reconstruct class hierarchies and other class dependencies, which are necessary for proper shrinking, optimization, and obfuscation. The library jars themselves always remain unchanged. You should still put them in the class path of your final application.
In order to determine which code has to be preserved and which code can be discarded or obfuscated, you have to specify one or more entry points to your code. These entry points are typically classes with main methods, applets, midlets, etc.
- In the shrinking step, ProGuard starts from these seeds and recursively determines which classes and class members are used. All other classes and class members are discarded.
- In the optimization step, ProGuard further optimizes the code. Among other optimizations, classes and methods that are not entry points can be made final, and some methods may be inlined.
- In the obfuscation step, ProGuard renames classes and class members that are not entry points. In this entire process, keeping the entry points ensures that they can still be accessed by their original names.
Any classes or class members of your code that are created or invoked dynamically (that is, by name) have to be specified as entry points too. It is generally impossible to determine these cases automatically, but ProGuard will offer some suggestions if keeping some classes or class members appears necessary. For proper results, you should at least be somewhat familiar with the code that you are processing.
ProGuard does handle Class.forName("SomeClass") and SomeClass.class constructs automatically. The referenced classes are preserved in the shrinking phase, and the string arguments are properly replaced in the obfuscation phase. With variable string arguments, it is generally impossible to determine their possible values (they might be read from a configuration file, for instance).
However, as mentioned, ProGuard will note constructs like "(SomeClass)Class.forName(variable).newInstance()". These might be an indication that the class or interface SomeClass and/or its implementations may need to be preserved. You can then adapt your configuration accordingly.
Whats New in 3.9 Stable Release:
- This release fixes a number of bugs.
- Notably, ".class" constructs compiled in Java 6 are now handled correctly.
- The optimization step now avoids a possible division by 0 and correctly processes local variables with indices larger than 255.
- The documentation and examples have been updated.
Whats New in 4.0 Beta Development Release:
- Added preverifier for Java 6 and Java Micro Edition, with new option -dontpreverify.
- Added new option -target to modify java version of processed class files.
- Made -keep options more orthogonal and flexible, with option modifiers allowshrinking, allowoptimization, and allowobfuscation.
- Added support for configuration by means of annotations.
- Improved shrinking of unused annotations.
- Added check on modification times of input and output, to avoid unnecessary processing, with new option -forceprocessing.
- Added new options -flattenpackagehierarchy and -repackageclasses (replacing -defaultpackage) to control obfuscation of packages names.
- Added new options -adaptresourcefilenames and -adaptresourcefilecontents, with file filters, to update resource files corresponding to obfuscated class names.
- Now respecting naming rule for nested class names (EnclosingClass$InnerClass) in obfuscation step, if InnerClasses attributes or EnclosingMethod attributes are being kept.
- Added new inter-procedural optimizations: method inlining and propagation of constant fields, constant arguments, and constant return values.
- Added optimized local variable allocation.
- Added over 250 new peephole optimizations.
- Improved making classes and class members public or protected.
- Now printing notes on suspiciously unkept classes in parameters of specified methods.
- Now printing notes for class names that dont seem to be fully qualified.
- Added support for uppercase filename extensions.
- Rewritten class file I/O code.
- Updated documentation and examples.
Download (MB)
Added: 2007-06-27 License: GPL (GNU General Public License) Price:
905 downloads
Flame Project 0.7.7
Flame Project is an Integrated Development Environment for producing Flash and Animated SVG files more>>
Flame Project is an Integrated Development Environment (IDE) for producing Flash and Animated SVG files, similar to Macromedia Captivate. It is licensed under the LGPL.
Imagine a free, easy to use GUI authoring environment that helps you create visually impressive and actually useful learning material. The short term goal for this project is to provide such an environment, and were well on the way to a first release for doing that.
Initially similar to Macromedia Captivate, but a big part is the support for Animated SVG. Flash has at least one serious design limitation (from my POV) making it nearly useless for comprehensive eLearning, and this appears to be addressed by the SVG spec.
The long term goal for this project is to provide both a complete authoring solution (like the Macromedia Flash IDE), and the components for server side communication, but thats a long way off. Lets finish the first bits first.
<<lessImagine a free, easy to use GUI authoring environment that helps you create visually impressive and actually useful learning material. The short term goal for this project is to provide such an environment, and were well on the way to a first release for doing that.
Initially similar to Macromedia Captivate, but a big part is the support for Animated SVG. Flash has at least one serious design limitation (from my POV) making it nearly useless for comprehensive eLearning, and this appears to be addressed by the SVG spec.
The long term goal for this project is to provide both a complete authoring solution (like the Macromedia Flash IDE), and the components for server side communication, but thats a long way off. Lets finish the first bits first.
Download (0.15MB)
Added: 2007-07-03 License: LGPL (GNU Lesser General Public License) Price:
845 downloads
amaroKed 0.7
amaroKed is a SuperKaramba theme for controling amaroK. more>>
amaroKed is a SuperKaramba theme for controling amaroK.
Mouse wheel over it changes the volume.
<<lessMouse wheel over it changes the volume.
Download (0.009MB)
Added: 2006-06-19 License: GPL (GNU General Public License) Price:
1222 downloads
episoder 0.4.7
episoder is a tool to tell you when new episodes of your favourite TV shows are airing. more>>
episoder is a tool to tell you when new episodes of your favourite TV shows are airing. episoder does so by parsing online TV show episode guides.
Currently episoder can parse the tv.com website thus it tells you whenever a new episode of a show listed on tv.com is aired.
Enhancements:
- Some parsing issues for certain shows were fixed.
<<lessCurrently episoder can parse the tv.com website thus it tells you whenever a new episode of a show listed on tv.com is aired.
Enhancements:
- Some parsing issues for certain shows were fixed.
Download (0.011MB)
Added: 2007-02-27 License: GPL (GNU General Public License) Price:
970 downloads
frox 0.7.17
frox is a transparent FTP proxy. more>>
Frox is a transparent FTP proxy that runs under Linux and BSD. It should also work on other UNIX OSes that use ipfilter.
It supports caching of FTP downloads, either by redirecting through a Squid proxy, or through its own local cache. Downloads may also be transparently scanned for viruses (through an external scanner).
Additionally there is an interface for writing scripts to add features or modify froxs behavior, and examples are included to limit download file size and to transparently direct connections to specific hosts to mirror servers.
The proxy is written with security in mind, and in the default setup runs as a non-root user in a chroot jail.
Enhancements:
- Log IP address in xfer logs when name resolution fails.
- Add ForceHTTP option to force downloads to go via the HTTP proxy even where caching will not be possible
- Close all file descriptors before execing virus scanner. Prevents frox waiting forever for some virus scanners to exit
- Compile time option for frox to alter argv[] so ps gives info as to what each frox process is doing
- Improve SSL logging and docs
- Fix for incorrect parsing of Deny ACLs which was introduced in 0.7.16
<<lessIt supports caching of FTP downloads, either by redirecting through a Squid proxy, or through its own local cache. Downloads may also be transparently scanned for viruses (through an external scanner).
Additionally there is an interface for writing scripts to add features or modify froxs behavior, and examples are included to limit download file size and to transparently direct connections to specific hosts to mirror servers.
The proxy is written with security in mind, and in the default setup runs as a non-root user in a chroot jail.
Enhancements:
- Log IP address in xfer logs when name resolution fails.
- Add ForceHTTP option to force downloads to go via the HTTP proxy even where caching will not be possible
- Close all file descriptors before execing virus scanner. Prevents frox waiting forever for some virus scanners to exit
- Compile time option for frox to alter argv[] so ps gives info as to what each frox process is doing
- Improve SSL logging and docs
- Fix for incorrect parsing of Deny ACLs which was introduced in 0.7.16
Download (0.17MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1649 downloads
FlameRobin 0.7.6
FlameRobin is a database administration tool for Firebird DBMS. more>>
FlameRobin project is a database administration tool for Firebird DBMS.
Main features:
- lightweight (small footprint, fast execution)
- cross-platform (Linux, Windows for start, others planned too)
- dependant only on other open source software
<<lessMain features:
- lightweight (small footprint, fast execution)
- cross-platform (Linux, Windows for start, others planned too)
- dependant only on other open source software
Download (1.7MB)
Added: 2006-11-22 License: Free for non-commercial use Price:
1069 downloads
xlayout 0.7
xlayout is a tool for positioning X11 windows from the console or remotely. more>>
Xlayout is a simple utility for controlling X11 windows and pointer from the console or remotely.
It can alter the geometry of a window, the position of the pointer, hide a window or send it to the top, list all windows, and get the current pointer position.
For use in scripts, it has the ability to return a status result ("1" for error, "0" for success). It can also ease windows into location.
Enhancements:
- Beta testing has begun.
- This release includes features to display information on the current screens connected.
- Some of the convenience methods were smoothed out.
- Bugfixes were made for the user input.
- A lot of code tidy ups were done.
<<lessIt can alter the geometry of a window, the position of the pointer, hide a window or send it to the top, list all windows, and get the current pointer position.
For use in scripts, it has the ability to return a status result ("1" for error, "0" for success). It can also ease windows into location.
Enhancements:
- Beta testing has begun.
- This release includes features to display information on the current screens connected.
- Some of the convenience methods were smoothed out.
- Bugfixes were made for the user input.
- A lot of code tidy ups were done.
Download (0.015MB)
Added: 2005-08-23 License: GPL (GNU General Public License) Price:
1522 downloads
KVocabulary 0.2.7
KVocabulary project is a vocabulary trainer for one or more foreign languages. more>>
KVocabulary project is a vocabulary trainer for one or more foreign languages.
Lessons are comprised of questions, which can be presented according to different criteria and edited.
Enhancements:
- Version 0.2.7 created.
- German handbook added
- English handbook added
- Text changed in file INSTALL
- Changed some codelines for KDE 3.1
- Changed Menuitems
- Menubar now loads from xml-file
- Popupmenu disabled
- Mainwidget added and set to CentralWidget
- Layout changed
- Makefile changed
- Changed code to save special characters
<<lessLessons are comprised of questions, which can be presented according to different criteria and edited.
Enhancements:
- Version 0.2.7 created.
- German handbook added
- English handbook added
- Text changed in file INSTALL
- Changed some codelines for KDE 3.1
- Changed Menuitems
- Menubar now loads from xml-file
- Popupmenu disabled
- Mainwidget added and set to CentralWidget
- Layout changed
- Makefile changed
- Changed code to save special characters
Download (0.64MB)
Added: 2006-10-21 License: GPL (GNU General Public License) Price:
1098 downloads
LogicParser 0.7.2
LogicParser project is a simple parser for logical expressions. more>>
LogicParser project is a simple parser for logical expressions.
This small application parses a logical expression and shows his tree representation (in a TreeView), along with its DOT format and PNG graph. It also calculate the result of the proposition based on given values.
<<lessThis small application parses a logical expression and shows his tree representation (in a TreeView), along with its DOT format and PNG graph. It also calculate the result of the proposition based on given values.
Download (0.028MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
981 downloads
GAIMnOSD 0.7
gaimnosd provides notifications in a TV gauge style for various events in Gaim. more>>
GAIMnOSD is a plugin for GAIM allowing to print events outside of any windows in TV menu style. The plugin uses the XOSD library for output.
GAIMnOSD project allows setting the size, position and the color of the notification messages.
<<lessGAIMnOSD project allows setting the size, position and the color of the notification messages.
Download (0.014MB)
Added: 2005-12-29 License: GPL (GNU General Public License) Price:
1394 downloads
Download (MB)
Added: 2007-08-04 License: GPL (GNU General Public License) Price:
834 downloads
KDEmod 3.5.7
KDEmod is a modular and tweaked version of the K Desktop Environment that has been optimized for ArchLinux. more>> <<less
Download (MB)
Added: 2007-07-09 License: GPL (GNU General Public License) Price:
845 downloads
Pauker 1.7.5
Pauker is a generic flashcard program written in Java. more>>
Pauker is a generic flashcard program written in Java. Pauker uses a combination of ultra-shortterm, shortterm, and longterm memory.
You can use it to learn all the things you never want to forget, like vocabulary, capitals, important dates, etc.
Pauker uses a combination of ultra-shortterm, shortterm, and longterm memory. You can use it to learn all the things efficiently you never want to forget, like vocabulary, capitals, important dates, etc.
Main features:
- completely free (OpenSource, GPL)
- flash card based,
- learning application,
- written in java
- using the leitner cardfile system,
- and works offline without the need of an internet connection.
Enhancements:
- Pauker works now with accidently unpacked lesson files.
- The French translation was updated.
- Wrong newline characters are shown when an answer was mistyped.
- The chosen repeating method when inserting new cards is now saved between program starts.
- An unobtrusive button for donations was added.
- The internal search engine was updated to Apache Lucene v2.1.
- The internal keyboard focus and default button handling was cleaned up.
<<lessYou can use it to learn all the things you never want to forget, like vocabulary, capitals, important dates, etc.
Pauker uses a combination of ultra-shortterm, shortterm, and longterm memory. You can use it to learn all the things efficiently you never want to forget, like vocabulary, capitals, important dates, etc.
Main features:
- completely free (OpenSource, GPL)
- flash card based,
- learning application,
- written in java
- using the leitner cardfile system,
- and works offline without the need of an internet connection.
Enhancements:
- Pauker works now with accidently unpacked lesson files.
- The French translation was updated.
- Wrong newline characters are shown when an answer was mistyped.
- The chosen repeating method when inserting new cards is now saved between program starts.
- An unobtrusive button for donations was added.
- The internal search engine was updated to Apache Lucene v2.1.
- The internal keyboard focus and default button handling was cleaned up.
Download (2.9MB)
Added: 2007-05-16 License: GPL (GNU General Public License) Price:
898 downloads
NRL OLSR 7.7
NRL has implemented a link-state routing protocol oriented for mobile ad hoc networks (MANETs). more>>
NRL has implemented a link-state routing protocol oriented for mobile ad hoc networks (MANETs). NRL OLSR is largely based on the Optimized Link State Routing (OLSR) protocol specification (RFC 3626).
Main features:
- Support for IPv6
- Operational in Windows, MacOS, Linux, and various embedded PDA systems such as Zaurus and PocketPC.
- Full link state topology can be distributed including non-MPR cross links
- A "willingness" attribute for localized MPR activation
- Support for several MPR selection protocols (Classical flooding, NS-MPR, S-MPR, MPR-CDS, and E-CDS)
- Neighbor link quality assessed by a smoothed hysteresis function.
- Many run-time parameters available including: HELLO interval, link state update interval, timeout factors, link quality assessment parameters, MPR willingness, and message TOS
- Configureable debugging verboseness
- Experimental features such as fuzzy-sighted routing and support for Simplified Multicast Forwarding
Enhancements:
- NS-2 support and various bugfixes.
<<lessMain features:
- Support for IPv6
- Operational in Windows, MacOS, Linux, and various embedded PDA systems such as Zaurus and PocketPC.
- Full link state topology can be distributed including non-MPR cross links
- A "willingness" attribute for localized MPR activation
- Support for several MPR selection protocols (Classical flooding, NS-MPR, S-MPR, MPR-CDS, and E-CDS)
- Neighbor link quality assessed by a smoothed hysteresis function.
- Many run-time parameters available including: HELLO interval, link state update interval, timeout factors, link quality assessment parameters, MPR willingness, and message TOS
- Configureable debugging verboseness
- Experimental features such as fuzzy-sighted routing and support for Simplified Multicast Forwarding
Enhancements:
- NS-2 support and various bugfixes.
Download (1.5MB)
Added: 2006-04-25 License: BSD License Price:
1283 downloads
fontutils 0.7
GNU font utilities to allow conversion of a scanned type specimen image into an outline (PostScript or Metafont) font. more>>
GNU font utilities to allow conversion of a scanned type specimen image into an outline (PostScript or Metafont) font. These fonts can be used with Ghostscript or TeX.
Since the fontutils were originally written in the early 1990s, other programs have been developed which do a better job of some parts of this task. Here is a list of the fontutils programs with indications of their current status:
- imgrotate: rotates images 90 degrees, an inefficiently-implemented subset of pnmrotate (from netpbm).
- imageto: extracts individual characters from a large image; still useful.
- fontconvert: some features may still be useful, such as creating a tfm file from a bitmap.
- charspace: allows non-interactive side bearing specification, so possibly still useful. On the other hand, fontforge allows interactive specification, and has a very nice preview window for testing side bearings.
- gsrenderfont: a shell script that converts outline fonts to bitmaps at a given size. This is called from TeX programs under certain circumstances. The version here has long been replaced by the scripts in the TeX distributions.
- limn: does the actual conversion from bitmaps to splines. These days, youre much better off using autotrace or potrace.
- bzrto: conversion from the generic homegrown `bzr (Bezier) format output by limn to PostScript Type 1, PostScript Type 3, or Metafont. Obsolete.
- bpltobzr: translate the binary bzr format into an equivalent text format `bpl (bezier property list), for editing. Fortunately, a full-featured free outline font editor, fontforge, has been written (by George Williams).
- xbfe: bitmap font editor for shapes and metrics; astonishingly, it seems there are still no bitmap editors for any format except BDF, so still useful.
<<lessSince the fontutils were originally written in the early 1990s, other programs have been developed which do a better job of some parts of this task. Here is a list of the fontutils programs with indications of their current status:
- imgrotate: rotates images 90 degrees, an inefficiently-implemented subset of pnmrotate (from netpbm).
- imageto: extracts individual characters from a large image; still useful.
- fontconvert: some features may still be useful, such as creating a tfm file from a bitmap.
- charspace: allows non-interactive side bearing specification, so possibly still useful. On the other hand, fontforge allows interactive specification, and has a very nice preview window for testing side bearings.
- gsrenderfont: a shell script that converts outline fonts to bitmaps at a given size. This is called from TeX programs under certain circumstances. The version here has long been replaced by the scripts in the TeX distributions.
- limn: does the actual conversion from bitmaps to splines. These days, youre much better off using autotrace or potrace.
- bzrto: conversion from the generic homegrown `bzr (Bezier) format output by limn to PostScript Type 1, PostScript Type 3, or Metafont. Obsolete.
- bpltobzr: translate the binary bzr format into an equivalent text format `bpl (bezier property list), for editing. Fortunately, a full-featured free outline font editor, fontforge, has been written (by George Williams).
- xbfe: bitmap font editor for shapes and metrics; astonishingly, it seems there are still no bitmap editors for any format except BDF, so still useful.
Download (0.80MB)
Added: 2006-06-08 License: GPL (GNU General Public License) Price:
1233 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 afe proguard 7 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