![]() |
2008-01-07
, 07:15
|
|
Posts: 79 |
Thanked: 5 times |
Joined on Jan 2008
@ England
|
#2
|
![]() |
2008-01-07
, 07:17
|
|
Posts: 5,478 |
Thanked: 5,222 times |
Joined on Jan 2006
@ St. Petersburg, FL
|
#3
|
sorry im a noob, but wtf is freetype and bytecode :S and what does this tutorial do?
The Following User Says Thank You to GeneralAntilles For This Useful Post: | ||
![]() |
2008-01-07
, 08:35
|
Posts: 2,152 |
Thanked: 1,490 times |
Joined on Jan 2006
@ Czech Republic
|
#4
|
![]() |
2008-01-07
, 17:27
|
Posts: 168 |
Thanked: 51 times |
Joined on Jun 2007
|
#5
|
![]() |
2008-01-07
, 18:37
|
Posts: 168 |
Thanked: 51 times |
Joined on Jun 2007
|
#7
|
The Following User Says Thank You to coffeedrinker For This Useful Post: | ||
![]() |
2008-01-08
, 20:11
|
Posts: 34 |
Thanked: 9 times |
Joined on Mar 2006
@ Wien
|
#8
|
xml version="1.0"?> <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> <fontconfig> <alias> <family>serif</family> <prefer> <family>Times New Roman</family> <family>Bitstream Vera Serif</family> <family>DejaVu Serif</family> <family>Thorndale AMT</family> <family>Luxi Serif</family> <family>Nimbus Roman No9 L</family> <family>Times</family> </prefer> </alias> <alias> <family>sans-serif</family> <prefer> <family>Tahoma</family> <family>Verdana</family> <family>Arial</family> <family>Bitstream Vera Sans</family> <family>DejaVu Sans</family> <family>Albany AMT</family> <family>Luxi Sans</family> <family>Nimbus Sans L</family> <family>Helvetica</family> </prefer> </alias> <alias> <family>monospace</family> <prefer> <family>Lucida Console</family> <family>Courier New</family> <family>Bitstream Vera Sans Mono</family> <family>DejaVu Sans Mono</family> <family>Cumberland AMT</family> <family>Luxi Mono</family> <family>Nimbus Mono L</family> <family>Courier</family> </prefer> </alias> </fontconfig>
![]() |
2008-01-08
, 20:29
|
Posts: 168 |
Thanked: 51 times |
Joined on Jun 2007
|
#9
|
![]() |
2008-01-08
, 21:53
|
Posts: 168 |
Thanked: 51 times |
Joined on Jun 2007
|
#10
|
http://internettablettalk.com/wiki/i...de_interpreter
HowTo: freetype library with bytecode interpreter enabled
I was asked to explain how to enable freetype with the bytecode interpreter in a private message. So here goes.
WARNING: DO NOT TRY THIS FOR IT WILL UNDOUBTABLY GO WRONG FOR YOU AND YOU WILL HAVE TO REFLASH YOUR DEVICE LOSING ALL YOUR SETTINGS!!!
1. Download the freetype source code, read the readme, enable the interpreter and compile the library.
OR
1. Download the library prepared by me. I have used it on my n800 for both the 2007 and 2008 OS, although it was compiled under the 2007 OS.
The following steps require you to be root:
2. Copy the file libfreetype.so.6.3.16 (version number may vary if you compiled it yourself) to /usr/lib from wherever you saved it (the following command assumes you are in the directory you saved the file to).
cp libfreetype /usr/lib/
Move to the /usr/lib directory to complete the task.
cd /usr/lib
You may need to change permissions on the file:
chmod 644 libfreetype.so.6.3.16
3. Remove the old link to the library with the command:
rm libfreetype.so.6
4. Create a new link to the new library:
ln -s libfreetype.so.6.3.16 libfreetype.so.6
5. OPTIONAL: Copy any new fonts you wish to use to /home/user/.fonts/ (this is a directory, you may have to create it first).
mkdir /home/user/.fonts
6. OPTIONAL: Create or edit /home/user/.fonts.conf (this is a text file). In it you can set the font size to begin antialiasing, etc.
My file looks like this:
TO UNDO THIS CHANGE:
Delete the link and recreate it to the original library and reboot.
cd /usr/lib
rm libfreetype.so.6
ln -s libfreetype.so.6.3.10 libfreetype.so.6
Last edited by coffeedrinker; 2008-01-08 at 23:03.