Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
StringMorph examples - Bitmap DejaVu Sans 9, 18, 36
Last updated at 4:15 pm UTC on 12 May 2018
The pre-rendered "Bitmap DejaVu Sans" font is used for everything: Source code, lists, buttons, balloon texts, ...


Jun 10, 2016
http://forum.world.st/Improved-rendering-of-our-Bitmap-DejaVu-Sans-tp4900330.html

External Image


TextStyle default     a TextStyle Bitmap DejaVu Sans 9


((StringMorph contents:  'Bitmap DejaVu Sans 9'
  font: (StrikeFont familyName: 'Bitmap DejaVu Sans' size: 9))
  color: Color black) openInHand


((StringMorph contents:  'Bitmap DejaVu Sans 18'
  font: (StrikeFont familyName: 'Bitmap DejaVu Sans' size: 18))
  color: Color black) openInHand



((StringMorph contents:  'Bitmap DejaVu Sans 36'
  font: (StrikeFont familyName: 'Bitmap DejaVu Sans' size: 36))
  color: Color blue) openInHand


s:= ((StringMorph contents:  'Another string'
  font: (StrikeFont familyName: 'Bitmap DejaVu Sans' size: 36))
  color: Color blue) openInHand.

s contents: 'new contents .......................now very long'



BitmapDejaVuSans_Sq6.0a.png