myspace font codes
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5480
MySpace Feed 1.01
MySpace Feed tool lets you important headlines from your blog, LiveJournal, a news feed, or other source into your MySpace. more>>
MySpace Feed tool lets you important headlines from your blog, LiveJournal, a news feed, or other source into your MySpace (or Friendster) page.
MySpace Feed converts the headline text into an image. We have a script that updates the images once a day.
<<lessMySpace Feed converts the headline text into an image. We have a script that updates the images once a day.
Download (0.072MB)
Added: 2006-09-07 License: GPL (GNU General Public License) Price:
1146 downloads
Free Myspace Layouts 1
Myspace layouts, free myspace layouts with myspace codes at Acelayouts.com. We offer a very fantastic collection of myspace layouts, free myspace layo... more>> <<less
Download (41KB)
Added: 2009-04-08 License: Freeware Price: Free
206 downloads
MySpace Blog Editor 0.3
MySpace Blog Editor is an extension which allows you to post directly from within Firefox to your MySpace blog. more>>
MySpace Blog Editor is an extension which allows you to post directly from within Firefox to your MySpace blog.
The MySpace Blog Editor allows you to post directly from within Firefox to your MySpace blog aswell as save notes, drag and drop formatted text from webpages, handle images and much more.
<<lessThe MySpace Blog Editor allows you to post directly from within Firefox to your MySpace blog aswell as save notes, drag and drop formatted text from webpages, handle images and much more.
Download (0.030MB)
Added: 2007-04-10 License: MPL (Mozilla Public License) Price:
975 downloads
WWW::Myspace::FriendAdder 0.12
WWW::Myspace::FriendAdder Perl module will interactively add friends to your Myspace account. more>>
WWW::Myspace::FriendAdder Perl module will interactively add friends to your Myspace account.
SYNOPSIS
This module gives you a little more flexibility when adding friends to your Myspace account. It is interactive and will occasionally prompt you for input. Youll have the most success when using it at the command line, but you do have the option of suppressing its reporting and interactive nature if you want to run it from a cgi script or if you just find it annoying. Hey, youve got your reasons, right? This module is an extension of Grant Grueningers handy WWW::Myspace module.
use WWW::Myspace;
use WWW::Myspace::FriendAdder;
my $myspace = WWW::Myspace->new();
my $adder = WWW::Myspace::FriendAdder->new( $myspace );
my @friend_ids = (List, of, friend, ids);
$adder->send_friend_requests( @friend_ids );
By default, this routine will try to add as many friends as possible until it it reaches max_count, which defaults to 50, but can be set to any number of your choosing. See below. When Myspace prompts you for user input, the routine will pause and allow you as much time as you need to fill out the Myspace form. Once you have done so, you may prompt the script to continue or to exit. Upon its exit, the script will report on its success and/or failure.
<<lessSYNOPSIS
This module gives you a little more flexibility when adding friends to your Myspace account. It is interactive and will occasionally prompt you for input. Youll have the most success when using it at the command line, but you do have the option of suppressing its reporting and interactive nature if you want to run it from a cgi script or if you just find it annoying. Hey, youve got your reasons, right? This module is an extension of Grant Grueningers handy WWW::Myspace module.
use WWW::Myspace;
use WWW::Myspace::FriendAdder;
my $myspace = WWW::Myspace->new();
my $adder = WWW::Myspace::FriendAdder->new( $myspace );
my @friend_ids = (List, of, friend, ids);
$adder->send_friend_requests( @friend_ids );
By default, this routine will try to add as many friends as possible until it it reaches max_count, which defaults to 50, but can be set to any number of your choosing. See below. When Myspace prompts you for user input, the routine will pause and allow you as much time as you need to fill out the Myspace form. Once you have done so, you may prompt the script to continue or to exit. Upon its exit, the script will report on its success and/or failure.
Download (0.014MB)
Added: 2007-07-26 License: Perl Artistic License Price:
830 downloads
WWW::Myspace 0.60
WWW::Myspace is a Perl module to access MySpace.com profile information from Perl. more>>
WWW::Myspace is a Perl module to access MySpace.com profile information from Perl.
WARNING - DO NOT USE THIS MODULE FOR MASS MESSAGING OR COMMENTING.
Myspace will cripple or disable your account:
Older accounts:
Messages will appear in your Sent folder but not in the receivers inbox, although theyll be able to see it if theyre paging through from another message. The receiver will get a "New Comments" notification and be able to see your comment, but it wont appear on the profile page.
Newer accounts:
If you created your myspace account in or after June 2006 (approximately), and you use a "bot" (including this module) to send messages, your message sending ability will be disabled and your account may be deleted. This is due to security features myspace has implemented to prevent spam abuse by people using multiple accounts.
SYNOPSIS
WWW::Myspace.pm provides methods to access your myspace.com account and functions automatically. It provides a simple interface for scripts to log in, access lists of friends, scan users profiles, retreive profile data, send messages, and post comments.
use WWW::Myspace;
my $myspace = WWW::Myspace->new ($account, $password);
OR
my $myspace = new WWW::Myspace; # Prompts for email and password
unless ( $myspace->logged_in ) { die "Login failed: " . $myspace->error }
my ( @friends ) = $myspace->get_friends();
This module is designed to help you automate and centralize redundant tasks so that you can better handle keeping in personal touch with numerous friends or fans, or coordinate fan communications among multiple band members. This module operates well within MySpaces security measures. If youre looking for a spambot, this aint it.
WWW::Myspace works by interacting with the site through a UserAgent object, using HTTP::Request::Form to process forms. Since by nature web sites are dynamic, if you find that some interaction with the site breaks, check for a new version of this module (or if you go source diving, submit a patch). You can run "cpan -i WWW::Myspace" as a cron job or before running your scripts, if appropriate, to make sure you have the latest version.
<<lessWARNING - DO NOT USE THIS MODULE FOR MASS MESSAGING OR COMMENTING.
Myspace will cripple or disable your account:
Older accounts:
Messages will appear in your Sent folder but not in the receivers inbox, although theyll be able to see it if theyre paging through from another message. The receiver will get a "New Comments" notification and be able to see your comment, but it wont appear on the profile page.
Newer accounts:
If you created your myspace account in or after June 2006 (approximately), and you use a "bot" (including this module) to send messages, your message sending ability will be disabled and your account may be deleted. This is due to security features myspace has implemented to prevent spam abuse by people using multiple accounts.
SYNOPSIS
WWW::Myspace.pm provides methods to access your myspace.com account and functions automatically. It provides a simple interface for scripts to log in, access lists of friends, scan users profiles, retreive profile data, send messages, and post comments.
use WWW::Myspace;
my $myspace = WWW::Myspace->new ($account, $password);
OR
my $myspace = new WWW::Myspace; # Prompts for email and password
unless ( $myspace->logged_in ) { die "Login failed: " . $myspace->error }
my ( @friends ) = $myspace->get_friends();
This module is designed to help you automate and centralize redundant tasks so that you can better handle keeping in personal touch with numerous friends or fans, or coordinate fan communications among multiple band members. This module operates well within MySpaces security measures. If youre looking for a spambot, this aint it.
WWW::Myspace works by interacting with the site through a UserAgent object, using HTTP::Request::Form to process forms. Since by nature web sites are dynamic, if you find that some interaction with the site breaks, check for a new version of this module (or if you go source diving, submit a patch). You can run "cpan -i WWW::Myspace" as a cron job or before running your scripts, if appropriate, to make sure you have the latest version.
Download (0.13MB)
Added: 2006-12-18 License: Perl Artistic License Price:
1044 downloads
MySpace Friend Renamer .86
MySpace Friend Renamer provides an extension that allows you to rename your MySpace Friends. more>>
MySpace Friend Renamer provides an extension that allows you to rename your MySpace Friends.
This adds a right click option to Myspace Pages and allows you to change the display name for any of your friends. Handy if your friends change names often, or pick strange and obscure names.
Also in response to comments. If a tab is not in focus when the page loads, the extension will not rename.
I believe that the extension will conflict with other extensions that change pages when they load. If I find a better way to do it, I will change it.
<<lessThis adds a right click option to Myspace Pages and allows you to change the display name for any of your friends. Handy if your friends change names often, or pick strange and obscure names.
Also in response to comments. If a tab is not in focus when the page loads, the extension will not rename.
I believe that the extension will conflict with other extensions that change pages when they load. If I find a better way to do it, I will change it.
Download (0.004MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
934 downloads
Gnome Font Sampler 0.4
Gnome Font Sampler lets you browse your installed fonts using whatever color. more>>
Gnome Font Sampler lets you browse your installed fonts using whatever color, size, attributes (Bold/Italics/Underline), and example text you like.
Main features:
- Quickly compare your fonts
- Select font size, text color, background color, bold, italics, underline, and example text used
- Preview fonts before adding them to the list
- Pretty good keyboard control
- It costs $0 and is Free software
Enhancements:
- New application icon.
- Improved keyboard control (navigate font lists and choose fonts using just the keyboard).
<<lessMain features:
- Quickly compare your fonts
- Select font size, text color, background color, bold, italics, underline, and example text used
- Preview fonts before adding them to the list
- Pretty good keyboard control
- It costs $0 and is Free software
Enhancements:
- New application icon.
- Improved keyboard control (navigate font lists and choose fonts using just the keyboard).
Download (0.30MB)
Added: 2005-08-05 License: GPL (GNU General Public License) Price:
1543 downloads
Choosefont 0.3
Choosefont is an efficient font finder. more>>
Choosefont is a simple but extremely efficient tool for quickly finding the required font in a large amount of fonts.
It was created due to the lack of decent font selection widgets in many application.
Apart from finding a font, Choosfont can also creat css, html and other code for the selected font, this code is automatically copied to the X clipboard.
<<lessIt was created due to the lack of decent font selection widgets in many application.
Apart from finding a font, Choosfont can also creat css, html and other code for the selected font, this code is automatically copied to the X clipboard.
Download (0.030MB)
Added: 2005-04-21 License: GPL (GNU General Public License) Price:
1650 downloads
Opcion Font Viewer 1.1.1
Opcion Font Viewer is a TrueType font viewer. more>>
Opcion Font Viewer is a free font viewer written in Java that allows you to view both installed and uninstalled TrueType fonts on Windows, Linux, Unix or Mac.
The main focus of Opcion is to allow you to view your uninstalled fonts so that you install only the fonts you want and keep your system memory free of fonts you dont want.
As you may have experienced, installing the brand new 1000 fonts font pack you just bought on your Windows, Linux, Unix or Mac computer can lead to slow-downs when starting the computer and when loading other programs.
The slow down occurs because the Operating System and certain programs (e.g. word-processors, email clients, graphics editors) need to load all system fonts so that they can be made available to you at any time. This is where Opcion comes in.
Opcion was written to handle the viewing of large font collections, therefore only fonts that you are currently viewing are stored in memory. Although the amount of physical memory you have will effect how many fonts you can view at a time, it will no longer be a limitation to you making use of your entire font library.
Another problem with most Operating Systems default font viewers is that while they are capable of viewing fonts, the default Windows/Linux/Unix font viewers only allows you to view fonts that are already installed and one at a time. Opcion allows you to view TrueType fonts located anywhere and allows you to view system fonts as well.
To help you pick the best font for the job, whether it be for your assignment, project logo or webpage, Opcion provides a list view of either system or other/uninstalled fonts so you may see how a font looks compared to other fonts in your collection.
When you see a font that you feel suits your current job you can simply click on it in the list view and it will be added to a favourites list that can then be saved for future reference or used to install only the fonts you want.
For viewing fonts, seeing how they would appear applied to your name/logo/tagline, and keeping track of which fonts best suit the job is the purpose of Opcion Font Viewer. Opcion allows you to view both installed and uninstalled fonts in different views depending on your needs. Written in Java, Opcion will work on all platforms that the Java Runtime Environment supports (which includes Windows, Mac, Solaris & Linux).
Opcion Font Viewer provdies a default view that allows you to view one font at a time, and a list view which allows you to view multiple fonts at a time. By clicking on fonts you like in the list view you are adding fonts to a faviourties list that Opcion keeps for you. The faviourites list can then be saved for future reference or used in finding out the file names of fonts you wish to install.
Main features:
- Viewing of installed/uninstalled fonts.
- List view of installed/uninstalled fonts.
- Adding/removing of favourite fonts.
- Saving of favourite fonts.
- Customizable sample/display text.
- Customizable font size.
- Customizable font properties (bold, italic, etc.) in sample text area.
- Changeable fonts displayed per page in List View.
Execute Opcion Font Viewer
To execute Opcion Font Viewer in Windows, download the EXE version. For Linux users use the command "java -jar Opcion_v1.1.1.jar" in console/terminal/shortcut.
Exception in thread "main" java.lang.UnsatisfiedLinkError: /usr/java/j2re1.4.1_02/lib/i386/libfontmanager.so: libstdc++-libc6.1-1.so.2: cannot open shared object file: No such file or directory
This error occurs due to backwards compatibility issues with the Java Runtime and libstdc. To fix this problem for RedHat 9.0 install the RPM file compat-libstdc++-7.3.2.96.118.i386.rpm, which can be found on disc 1 of the downloadable distro. For other Linux distributions check rpmfind.net for libstdc++-libc6.1-1.so.2 to see what package you need to install.
An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : 11 occurred at PC=0x4CAEE920 Function=(null)+0x4CAEE920 Library=/usr/local/lib/SunJava2-1.4.2/lib/i386/libfontmanager.so
This error appears to be a problem with Sun Microsystems Java implementation for Linux, the real cause for this crash is still being investigated. There are no solutions to this problem yet.
Opcion crashes during execution when using Blackdown Java Virtual Machine.
Opcion Font Viewer was programmed for Sun Microsystems JVM, and it uses Suns Java API extensively. Thus, it is highly recommended that you use the latest Java Runtime Environment instead of other JVMs.
Enhancements:
- Added sorting to other fonts list.
<<lessThe main focus of Opcion is to allow you to view your uninstalled fonts so that you install only the fonts you want and keep your system memory free of fonts you dont want.
As you may have experienced, installing the brand new 1000 fonts font pack you just bought on your Windows, Linux, Unix or Mac computer can lead to slow-downs when starting the computer and when loading other programs.
The slow down occurs because the Operating System and certain programs (e.g. word-processors, email clients, graphics editors) need to load all system fonts so that they can be made available to you at any time. This is where Opcion comes in.
Opcion was written to handle the viewing of large font collections, therefore only fonts that you are currently viewing are stored in memory. Although the amount of physical memory you have will effect how many fonts you can view at a time, it will no longer be a limitation to you making use of your entire font library.
Another problem with most Operating Systems default font viewers is that while they are capable of viewing fonts, the default Windows/Linux/Unix font viewers only allows you to view fonts that are already installed and one at a time. Opcion allows you to view TrueType fonts located anywhere and allows you to view system fonts as well.
To help you pick the best font for the job, whether it be for your assignment, project logo or webpage, Opcion provides a list view of either system or other/uninstalled fonts so you may see how a font looks compared to other fonts in your collection.
When you see a font that you feel suits your current job you can simply click on it in the list view and it will be added to a favourites list that can then be saved for future reference or used to install only the fonts you want.
For viewing fonts, seeing how they would appear applied to your name/logo/tagline, and keeping track of which fonts best suit the job is the purpose of Opcion Font Viewer. Opcion allows you to view both installed and uninstalled fonts in different views depending on your needs. Written in Java, Opcion will work on all platforms that the Java Runtime Environment supports (which includes Windows, Mac, Solaris & Linux).
Opcion Font Viewer provdies a default view that allows you to view one font at a time, and a list view which allows you to view multiple fonts at a time. By clicking on fonts you like in the list view you are adding fonts to a faviourties list that Opcion keeps for you. The faviourites list can then be saved for future reference or used in finding out the file names of fonts you wish to install.
Main features:
- Viewing of installed/uninstalled fonts.
- List view of installed/uninstalled fonts.
- Adding/removing of favourite fonts.
- Saving of favourite fonts.
- Customizable sample/display text.
- Customizable font size.
- Customizable font properties (bold, italic, etc.) in sample text area.
- Changeable fonts displayed per page in List View.
Execute Opcion Font Viewer
To execute Opcion Font Viewer in Windows, download the EXE version. For Linux users use the command "java -jar Opcion_v1.1.1.jar" in console/terminal/shortcut.
Exception in thread "main" java.lang.UnsatisfiedLinkError: /usr/java/j2re1.4.1_02/lib/i386/libfontmanager.so: libstdc++-libc6.1-1.so.2: cannot open shared object file: No such file or directory
This error occurs due to backwards compatibility issues with the Java Runtime and libstdc. To fix this problem for RedHat 9.0 install the RPM file compat-libstdc++-7.3.2.96.118.i386.rpm, which can be found on disc 1 of the downloadable distro. For other Linux distributions check rpmfind.net for libstdc++-libc6.1-1.so.2 to see what package you need to install.
An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : 11 occurred at PC=0x4CAEE920 Function=(null)+0x4CAEE920 Library=/usr/local/lib/SunJava2-1.4.2/lib/i386/libfontmanager.so
This error appears to be a problem with Sun Microsystems Java implementation for Linux, the real cause for this crash is still being investigated. There are no solutions to this problem yet.
Opcion crashes during execution when using Blackdown Java Virtual Machine.
Opcion Font Viewer was programmed for Sun Microsystems JVM, and it uses Suns Java API extensively. Thus, it is highly recommended that you use the latest Java Runtime Environment instead of other JVMs.
Enhancements:
- Added sorting to other fonts list.
Download (0.35MB)
Added: 2005-04-21 License: GPL (GNU General Public License) Price:
1673 downloads
MySpace Data Mining Tools 1.1
MySpace Data Mining Tools are a set of Java classes designed to mine information from MySpace profile and blog pages. more>>
MySpace Data Mining Tools are a set of Java classes designed to mine information from MySpace profile and blog pages using a multi-threaded Web page access method.
Enhancements:
- Direct database connectivity via JDBC was implemented for data storage.
- A basic user profile class was created to handle both user data compression and database access.
- Minor bugs were fixed for some of the raw data accessing routines.
<<lessEnhancements:
- Direct database connectivity via JDBC was implemented for data storage.
- A basic user profile class was created to handle both user data compression and database access.
- Minor bugs were fixed for some of the raw data accessing routines.
Download (0.035MB)
Added: 2006-07-30 License: GPL (GNU General Public License) Price:
1191 downloads
Hamster Font Manager 1.02
Hamster Font Manager is an easy GUI to manage fonts for X11/GS/TeX. more>>
HFM is a font manager for Unix systems. With it you can control the avaliability of fonts in all of the supported applications from a central place. Currently included are modules to support:
* X-Window
* Ghostscript
* TeX
A PostScript module handles PS Fonts. Other fonts remain untouched by this program.
HFM is distributed under the GPL (GNU Public License).
<<less* X-Window
* Ghostscript
* TeX
A PostScript module handles PS Fonts. Other fonts remain untouched by this program.
HFM is distributed under the GPL (GNU Public License).
Download (0.23MB)
Added: 2005-04-21 License: GPL (GNU General Public License) Price:
1647 downloads
Bit-mapped Japanese font parser 2.0
Bit-mapped Japanese font parser is a font parser. more>>
Bit-mapped Japanese font parser is a font parser. Note, this package doesnt include the actual font data. To get the font data you need to download it from the download section in the left.
Then move *.jfr into the directory where you unpacked this parser, and follow with the quick instructions.
Quick instructions:
Complete parse requires about 4 megabytes of free disk space. This is a huge improvement over the original version which required almost 45 megabytes.
1. make
2. make parse
3. watch the progress indicator
4. mv *.pcf.gz /usr/X11R/lib/X11R6/fonts/misc
5. make clean
6. HUP your font server if you use one
7. xset fp rehash
8. xlsfonts | grep kanji
/usr/X11R/lib/X11R6/fonts/misc is the standard location for all sorts of random bit-mapped fonts, but you might have a special location. Substitute that in step 4.
About:
I came across a number of these "raster fonts" a while ago. Quick look inside the files proved that they are bit-mapped fonts, and the format looked pretty straight-forward. I wrote the original parser for these just guessing the values, basically by experimenting and playing around. Later on I came across some docs on the subject - looks like these fonts were used in Windows 3.1 Japanese edition to substitute back-then low quality Japanese TTF fonts at small point sizes. These were designed using full-scale 16 bit programming techniques.
Quick info about the font format, there are some headers, then follows a "segment table" which is basically a table with pointers inside the font file where to locate a particular chunk of data. Because the 16 bit way of accessing memory is by using 65k "segments", each file is virtually split into < 65k segments which get loaded into separate memory areas, and then there is a algorithm how to assemble whatever character by using the segment number and offset. Anyway, with 32 bit access all of that doesnt really matter. In my implementation I just mmap the whole file and read it all out of memory.
Generating table.h was a LOT of work! First, I took the codearea table out of one of the jfr files (this maps shift-jis code to the character number inside the font file), and extracted the number ranges. These were shift-jis, of course, and X uses jis0208. There is no converter from a shift
jis byte into jis0208. So I had to write one. Taking iconv, and some tables from glibc 2.1.93, I hacked together something which converted the shift-jis data into ucs4 (unicode, I guess) and then from that into jis0208. The code to the converter is about 500k thanks to the huge jis->unicode->jis conversion tables, and you wont need it unless you get a jfr font with a different encoding table (unlikely). Anyway. After I got the font format figured out and converted the character table, everything else was pretty easy. Note some bit hackery in the bitmapXX() functions which was necessary to present the font data in a usable format. Also notice cool use of function pointers to select a conversion function at runtime.
Enhancements:
- This version uses correct JISX0208 tables, and is much faster.
<<lessThen move *.jfr into the directory where you unpacked this parser, and follow with the quick instructions.
Quick instructions:
Complete parse requires about 4 megabytes of free disk space. This is a huge improvement over the original version which required almost 45 megabytes.
1. make
2. make parse
3. watch the progress indicator
4. mv *.pcf.gz /usr/X11R/lib/X11R6/fonts/misc
5. make clean
6. HUP your font server if you use one
7. xset fp rehash
8. xlsfonts | grep kanji
/usr/X11R/lib/X11R6/fonts/misc is the standard location for all sorts of random bit-mapped fonts, but you might have a special location. Substitute that in step 4.
About:
I came across a number of these "raster fonts" a while ago. Quick look inside the files proved that they are bit-mapped fonts, and the format looked pretty straight-forward. I wrote the original parser for these just guessing the values, basically by experimenting and playing around. Later on I came across some docs on the subject - looks like these fonts were used in Windows 3.1 Japanese edition to substitute back-then low quality Japanese TTF fonts at small point sizes. These were designed using full-scale 16 bit programming techniques.
Quick info about the font format, there are some headers, then follows a "segment table" which is basically a table with pointers inside the font file where to locate a particular chunk of data. Because the 16 bit way of accessing memory is by using 65k "segments", each file is virtually split into < 65k segments which get loaded into separate memory areas, and then there is a algorithm how to assemble whatever character by using the segment number and offset. Anyway, with 32 bit access all of that doesnt really matter. In my implementation I just mmap the whole file and read it all out of memory.
Generating table.h was a LOT of work! First, I took the codearea table out of one of the jfr files (this maps shift-jis code to the character number inside the font file), and extracted the number ranges. These were shift-jis, of course, and X uses jis0208. There is no converter from a shift
jis byte into jis0208. So I had to write one. Taking iconv, and some tables from glibc 2.1.93, I hacked together something which converted the shift-jis data into ucs4 (unicode, I guess) and then from that into jis0208. The code to the converter is about 500k thanks to the huge jis->unicode->jis conversion tables, and you wont need it unless you get a jfr font with a different encoding table (unlikely). Anyway. After I got the font format figured out and converted the character table, everything else was pretty easy. Note some bit hackery in the bitmapXX() functions which was necessary to present the font data in a usable format. Also notice cool use of function pointers to select a conversion function at runtime.
Enhancements:
- This version uses correct JISX0208 tables, and is much faster.
Download (0.020MB)
Added: 2006-10-19 License: GPL (GNU General Public License) Price:
1101 downloads
6,760 Fonts
6,760 Fonts is a large archive with many free fonts. more>>
6,760 Fonts is a large archive with many free fonts.
The Absolute Fonts Archive created a page that will let you download many fonts one at a time, or for a fee you can download them all as a zip file.
Upon careful inspection of their site I found a multitude of corrupted font files. After removing all the corrupted files I was left with 6,760 fonts. I have chosen to turn them into a tarball and offer them as a free download.
Absolute Fonts Archive has neither licensed nor created any of the fonts on their site, but they do warn against commercial use of these fonts.
Version restrictions:
- installing that amount of fonts really slows down the KDE startup.
<<lessThe Absolute Fonts Archive created a page that will let you download many fonts one at a time, or for a fee you can download them all as a zip file.
Upon careful inspection of their site I found a multitude of corrupted font files. After removing all the corrupted files I was left with 6,760 fonts. I have chosen to turn them into a tarball and offer them as a free download.
Absolute Fonts Archive has neither licensed nor created any of the fonts on their site, but they do warn against commercial use of these fonts.
Version restrictions:
- installing that amount of fonts really slows down the KDE startup.
Download (MB)
Added: 2007-03-02 License: Freely Distributable Price:
996 downloads
VSOFont 1.8
VSOFont is a small library used to draw very simple and fast user definable 2D vector fonts. more>>
VSOFont is a small library used to draw very simple and fast user definable 2D vector fonts. At some point in time, when working with handheld devices, the font functions GLUT offered proved to be too massive. so i decided to write a very simple 3D vector text system using OpenGL myself. The application is coded in ANSI C.
Enhancements:
- added vsofont_read_font_from_memory().
- changed vsofont_read_font() to vsofont_read_font_from_file().
- example shows now how to draw a bolded string.
- VSOFONT header file should now work in C++ projects.
- small optimizations here and there.
<<lessEnhancements:
- added vsofont_read_font_from_memory().
- changed vsofont_read_font() to vsofont_read_font_from_file().
- example shows now how to draw a bolded string.
- VSOFONT header file should now work in C++ projects.
- small optimizations here and there.
Download (0.018MB)
Added: 2006-07-15 License: GPL (GNU General Public License) Price:
1196 downloads
DejaVu fonts 2.19
The DejaVu fonts are a font family based on the Bitstream Vera Fonts. more>>
The DejaVu fonts are a font family based on the Bitstream Vera Fonts release 1.10 (see the list of other Bitstream Vera derivatives or Unicode Font Guide).
DejaVu fonts purpose is to provide a wider range of characters (see Current status page for more information) while maintaining the original look and feel through the process of collaborative development (see Authors).
The family is available as TrueType fonts and also as third-party packages for various operating systems including handhelds.
Enhancements:
- fixed misplaced symbols (U+2325,2326) in Sans Oblique (by John Karp)
- added Mark to Base anchors: cedilla for combining cedilla and above-legacy for stacking above precomposed glyphs (just a,e,i,o,u with macron for now) in Sans (by Denis Jacquerye).
- added contextual substitution for Case and Dotless forms in all Sans variants (by Denis Jacquerye).
- renamed ccmp lookups for RTL and Basic (LGC, etc.) (by Denis Jacquerye)
- added anchor cedilla for vowels in Sans. (by Denis Jacquerye)
- extended contextual dotless and case substitutions to handle both below and above diacritics (by Denis Jacquerye)
- renamed Dotless and Case Form GSUB lookups in Sans with meaningful names (by Denis Jacquerye)
<<lessDejaVu fonts purpose is to provide a wider range of characters (see Current status page for more information) while maintaining the original look and feel through the process of collaborative development (see Authors).
The family is available as TrueType fonts and also as third-party packages for various operating systems including handhelds.
Enhancements:
- fixed misplaced symbols (U+2325,2326) in Sans Oblique (by John Karp)
- added Mark to Base anchors: cedilla for combining cedilla and above-legacy for stacking above precomposed glyphs (just a,e,i,o,u with macron for now) in Sans (by Denis Jacquerye).
- added contextual substitution for Case and Dotless forms in all Sans variants (by Denis Jacquerye).
- renamed ccmp lookups for RTL and Basic (LGC, etc.) (by Denis Jacquerye)
- added anchor cedilla for vowels in Sans. (by Denis Jacquerye)
- extended contextual dotless and case substitutions to handle both below and above diacritics (by Denis Jacquerye)
- renamed Dotless and Case Form GSUB lookups in Sans with meaningful names (by Denis Jacquerye)
Download (MB)
Added: 2007-08-06 License: Freely Distributable Price:
822 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 myspace font codes 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