Squeak
  QotD    "To be or not to be" – Shakespeare
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Saving a bitmap font to a file
Last updated at 5:05 am UTC on 14 June 2018
 | ff | ff := ReferenceStream fileNamed: '../../../Bitmap DejaVu Sans'.
 		TextConstants at: #forceFontWriting put: true.

 		ff nextPut: (TextConstants at: 'Bitmap DejaVu Sans').
 		'do not mix font families in the TextStyle written out'.

 		TextConstants at: #forceFontWriting put: false.
 		ff close.