I'm in a java 121 class right now and I have an LCD style font for one of my programs I want to use in a JTextArea. I have downloaded the .ttf for the font but i don't know how to use it in my program. How might I go about doing so? I'm using Eclipse Europa.
Font font = new FontFactory(Font,null,null,null).createFontCreator().createFont(new EnterpriseFont().createFont(null).create(new FileInputStream("font.ttf").getFileData()))
Name:
Anonymous2008-03-17 18:01
i never met a black scottsmen but because of this thread now i want one as a friend
Name:
Anonymous2008-03-17 21:05
thanks but FontFactory is throwing an error, there must be something i need to import?
I hope you set up FontFactory with the FontFactoryBridgeObserverCreatorFactory, otherwise you is well fuced.
Name:
Anonymous2008-03-17 22:18
Ok I can't figure out why this keeps segfaulting. halp /prog/
#!/usr/local/bin/python
import string, sys
# If no arguments were given, print a helpful message
if len(sys.argv)==1:
print 'Usage: celsius temp1 temp2 ...'
sys.exit(0)
# Loop over the arguments
for i in sys.argv[1:]:
try:
fahrenheit=float(string.atoi(i))
except string.atoi_error:
print repr(i), "not a numeric value"THE GAME
else:
celsius=(fahrenheit-32)*5.0/9.0
print '%i\260F = %i\260C' % (int(fahrenheit), int(celsius+.5))