GetSnappy.com Technology Blog
Tips & Techniques We've Learned From Practice
FreeBSD OpenJDK6-b17 font issues
Quite simply. Fonts look terrible when using openjdk6 on FreeBSD. I’ve been spending quite a bit of time researching and fixing this issue.
This is a simple test program I put together for comparing fonts.
import java.awt.*;
import javax.swing.*;
public class BasicDraw {
public static void main(String[] args) {
new BasicDraw();
}
BasicDraw() {
// Create a frame
JFrame frame = new JFrame();
// Add a component with a custom paint method
frame.getContentPane().add(new MyComponent());
// Display the frame
int frameWidth = 300;
int frameHeight = 300;
frame.setSize(frameWidth, frameHeight);
frame.setVisible(true);
}
class MyComponent extends JComponent {
// This method is called whenever the contents needs to be painted
public void paint(Graphics g) {
// Retrieve the graphics context; this object is used to paint shapes
Graphics2D g2d = (Graphics2D)g;
// Draw an oval that fills the window
int x = 0;
int y = 0;
int width = getSize().width-1;
int height = getSize().height-1;
g2d.drawOval(x, y, width, height);
// Set the desired font if different from default font
String family = "Serif";
int style = Font.PLAIN;
int size = 12;
Font font = new Font(family, style, size);
g.setFont(font);
// Draw a string such that its base line is at x, y
x = 10;
y = 10;
g.drawString("aString", x, y);
// Draw a string such that the top-left corner is at x, y
x = 10;
y = 30;
FontMetrics fontMetrics = g.getFontMetrics();
g.drawString("bString", x, y+fontMetrics.getAscent());
}
}
}
When comparing the results of Openjdk6-b17 vs diablo-jdk-1.6.0.07.02_6, you’ll see a noticeable difference in the fonts being used. Openjdk6 looks terrible.
Here is another executable class that lists all available fonts on a machine:
import java.awt.GraphicsEnvironment;
public class AvailableFonts
{
/**
* @param args
*/
public static void main(String[] args) {
GraphicsEnvironment gEnv = GraphicsEnvironment
.getLocalGraphicsEnvironment();
String envfonts[] = gEnv.getAvailableFontFamilyNames();
for (String font: envfonts) {
System.err.println(font);
}
}
}
When comparing the output between openjdk and diablo-jdk, the only difference were these three lines in the diablo-jdk output:
Lucida Bright Lucida Sans Lucida Sans Typewriter
These fonts turned out to be .ttf font files located at /usr/local/diablo-jdk16/jre/lib/fonts/.
I performed the following command to link them inside openjdk6
ln -s /usr/local/diablo-jdk16/jre/lib/fonts/ /usr/local/openjdk6/jre/lib/fonts/
Now the AvailableFonts class returns identical results, however BasicDraw, doesn’t appear to render the text all together. Trying to run netbeans or eclipse, or any GUI/swing app for that matter causes even more unusual results. It looks as if the fonts are being drawn with a width of 0, and height 10 times their normal size.
I imported a couple of patches for bugs 6761856 and 6817112 from the jdk7 branch, to try and resolve this unusual behavior with no luck. I then started playing with fontconfig.properties, in hopes of resolving the font issues there. It looked like it wanted to use DejaVU LGC fonts as the primary for latin-1. I used the port x11-fonts/dejavu which contains the non LGC fonts since there DejaVU LGC fonts don’t appear to have a port yet. After installing the fonts and updating fontconfig.properties I re-ran my BasicDraw test class… and SUCCESS! Font’s looked equivalent to those in diablo-jdk and the best part is I don’t have to worry about licensing issues with Sun’s Lucida fonts.
I’ve added the following to the ports/java/openjdk6 Makefile:
RUN_DEPENDS+= dejavu:${PORTSDIR}/x11-fonts/dejavu
I’d like to offer a better out-of-the-box installation to our japanese,chinese, and korean audience, but I’m not sure what the best way to do this is. So far this is what I’ve come up with as the ideal fonts for each locality:
korean = korean/unfonts-ttf chinese = chinese/mingunittf japanese = japanese/font-sazanami
I’ve updated the fontconfig.properties to reflect these fonts and their installed locations, however I’m not sure I’ve chosen the right fonts. Furthermore I’d like out-of-box font dependencies to be resolved based on the LOCALE of the machine. I haven’t found any examples of doing this, and I can only assume their is a reason for it. Perhaps the right thing to do is require all fonts for all languages regardless of the LOCALE?
My work so far has been included in pre release 2 and, you can grab the latest preliminary port from this blog:
http://www.getsnappy.com/tech-blog/freebsd-tips-tricks/upgrading-freebsd-port-java-openjdk6-from-b16-to-b17/
Any feedback good or bad, is appreciated.
February 8, 2010 - 10:11 pm
soma pill identification cheapest soma to buy online in uk buy soma overnight shipping prescription of soma free generic soma dj soma viagra substitute how long does viagra last cheap overnight soma generic soma overnight soma for sell soma overnight us delivery soma online purchase saturday delivery celexa sexual side effects soma counter acts cod saturday soma clinica soma buy soma online without a prescription discount soma online back generic guarantee money soma where to buy soma no prescriptin no fees soma health risks description of soma soma ingredients fedex soma overnight without a prescription what is soma canadianpharmacy soma buy somatotropin lyophilized soma rdna soma ordering without dr soma for woment expiration patent soma soma recordings mexico soma what is soma for opiate tramadol tramadol veterinarian soma dosages soma chemistry discount soma soma and drug screen
February 8, 2010 - 10:12 pm
7 tramadol for dogs cialis pricing cheap phentermine 37 5
February 8, 2010 - 10:19 pm
6 cialis drug prescription no prescription xanax discount online phentermine
February 8, 2010 - 10:25 pm
7 cialis online tramadol 50 mg ativan vs xanax
February 8, 2010 - 10:31 pm
6 no prescription tramadol cialis 10 mg tramadol hci
February 8, 2010 - 10:37 pm
7 effects phentermine cheap tramadol adipex testimonials
February 8, 2010 - 10:41 pm
2 adipex online buy xanax online adipex overnight
February 8, 2010 - 10:43 pm
6 adipex side effects tramadol dosage effects of viagra
February 8, 2010 - 10:50 pm
7 cheapest adipex online cialis for woman cialis free
February 8, 2010 - 10:55 pm
6 cheap xanax online prescription phentermine adipex diet pill
February 8, 2010 - 11:06 pm
6 cod phentermine is phentermine safe next day tramadol
February 8, 2010 - 11:16 pm
7 adipex cheap consultation female viagra effects phentermine
February 8, 2010 - 11:19 pm
6 cialis dosage 20mg tramadol withdrawal symptoms xanax abdominal pain
February 8, 2010 - 11:30 pm
7 discount viagra generic viagra mexico tramadol addiction
February 8, 2010 - 11:32 pm
6 tramadol addiction free adipex cialis lowest price
February 8, 2010 - 11:42 pm
7 legal viagra buy xanax online tramadol overdose
February 8, 2010 - 11:43 pm
6 chinese viagra phentermine 37 5mg tabs discount phentermine online
February 8, 2010 - 11:54 pm
6 legal viagra buy viagra now buy xanax
February 8, 2010 - 11:55 pm
7 cheapest phentermine pills tramadol for dogs cialis on line
February 8, 2010 - 11:56 pm
4, Acetaminophen Methadone Xanax Drug Test, 8O, Doctor Xanax, 8P, Energy Equal To Phentermine,
, Alprazolam 2mg 90, ougv, 40mg Alprazolam, lxe, Ultram Er Tab 100mg, msze, Phentermine Mc, >:(, How Is Xanax Abused, 8), Heart Rate And Xanax Xr, 434, Buy Phentermine Online Online Doctor Consultation, wble,
February 9, 2010 - 12:07 am
6 adipex on line phentermine adipex tramadol withdrawal symptoms
February 9, 2010 - 12:08 am
7 phentermine 37 5mg cheap phentermine 37 5 adipex online consultation
February 9, 2010 - 12:11 am
2 cheap viagra online ingredients in tramadol buy viagra online
February 9, 2010 - 12:18 am
6 effects phentermine buying viagra tramadol 50 mg
February 9, 2010 - 12:19 am
1, Xanax Chemical Structure, >:-[[[, Non Prescrition Lortab And Xanax, %(, Buy Cheap Phentermine The Offical Site,
, How Does Alprazolam Work, 442, Alprazolam Aliud, cwk, Altace Ultram, sbxydb, Ultram 059 Order Phentermine, rue, Adderall Combined With Xanax, >:), What Is The History Of Xanax, jhu, Phentermine Overnight No Prescription Legal Legal, 8-]]],
February 9, 2010 - 12:21 am
7 adipex online prescription adipex online tramadol 180
February 9, 2010 - 12:30 am
6 tramadol for dogs xanax detox tramadol without prescription
February 9, 2010 - 12:35 am
7 tramadol antidepressant buy tramadol cod discount tramadol
February 9, 2010 - 12:40 am
5, Xanax Histoy, :[, Alprazolam Xanax, >:-))), Phentermine And Selepryl Together, 061862, Alprazolam What's In It, 730, Davia Generic For Alprazolam, bcqav, Action Class Ultram, 01098, Phentermine And Sibutramine Be Combined, miylql, Which Is Stronger Xanax Or Clonopin, =-]], Xanax For Cats, 250, Phentermine Overnight No Prescription Legal Legal, 192578,
February 9, 2010 - 12:41 am
6 get phentermine xanax detection times what is xanax
February 9, 2010 - 12:49 am
7 tramadol antidepressant buy phentermine cheap ativan vs xanax
February 9, 2010 - 12:52 am
6 buy phentermine 30mg alternative to viagra buying viagra
February 9, 2010 - 1:00 am
7 tramadol hcl tramadol cod online chinese viagra
February 9, 2010 - 1:06 am
6 adipex dangers adipex review tramadol antidepressant
February 9, 2010 - 1:10 am
comment2, picture doxycycline rx, order cialis soft tabs, cheap generic propecia, tetracycline treat acne, elimite http, levitra, levitra, baclofen intrathecal pump, baclofen, diamox, antiox,, buy amoxil online, levitra, 500mg levaquin, Predaject-50, benicar effects hct side, cytotec, cialis, riobant, cymbalta, rimonabant, doxycycline prescribe why, diamox, bactrim, ampicillin effects side, zoloft and diarrhea, buy lipitor online, pharmaceutical female viagra, accutane support group, doxycycline, propecia online consultation, nolvadex, viagra, 2blioresal baclofen, generic celexa, levaquin online order, amoxil, zoloft online, canda viagra online, doxycycline,
February 9, 2010 - 1:12 am
8, 1000 Mg Xanax Bars, 874042, Overdose On 1mg Xanax, 69482, 37.5 159 A Phentermine, 158668, Alprazolam And The Color, nwjgm, Fabra Alprazolam, bxwmi, Ultram Sexual Dysfunction, 916, Ultram 059 Order Phentermine, >:))), Cost For Xanax At Walgreens,
, Adhd Xanax, 8P, Amazon Com Compare Phentermine Prices, 146671,