You are not logged in.
I'd like to change the font to bold.
I'm sure this is very simple for python users, however I'm not, and guessed at a few changes that didn't work.
self.draw_text(ctx, self.myip,0,10, 'FreeSans',15,self.width,allignment = pango.ALIGN_CENTER)
Thanks in advance!
Last edited by jeff story (2011-07-24 00:29:03)
Check out my website for info on the Arch Linux Installer
Offline
Last time I dealt with fonts, we had a different font for normal, bold and italic. How about trying a bold font?
EDIT: Okay, forget that, it's late and I need sleep...
Last edited by Awebb (2011-07-24 00:13:11)
Offline
Thanks Awebb,
I didn't try changing the font type. That did it.
I tried Arial Black, but that looked too bold. Changing to regular Arial looks pretty good.
self.draw_text(ctx, self.myip,0,10, 'Arial' ,16 ,self.width,allignment = pango.ALIGN_CENTER)
Check out my website for info on the Arch Linux Installer
Offline