Combine AmigaBitmapFont objects into an AmigaBitmapFontSet
Use this function to correctly combine one or more AmigaBitmapFont
class objects into a single AmigaBitmapFontSet
class
object.
## S3 method for class 'AmigaBitmapFont' c(..., name = "font")
... |
One or more |
name |
A |
AmigaBitmapFontSet
class objects can hold multiple
AmigaBitmapFont
class objects. Use this method to
combine font bitmaps into such a font set. Make sure each bitmap
represents a unique font height (in pixels). When heights are duplicated
an error will be thrown.
You can also specify a name
for the font, that will be embeded
in the object. As this name will also be used as a file name when
writing the font to a file, make sure that it is a valid filename.
Returns an link{AmigaBitmapFontSet}
in which the
AmigaBitmapFont
objects are combined.
Pepijn de Vries
Other AmigaBitmapFont.operations: AmigaBitmapFont
,
availableFontSizes
, fontName
,
font_example
,
getAmigaBitmapFont
,
rasterToAmigaBitmapFont
,
rawToAmigaBitmapFontSet
,
rawToAmigaBitmapFont
,
read.AmigaBitmapFontSet
,
read.AmigaBitmapFont
,
write.AmigaBitmapFont
## Not run: data(font_example) ## first get some AmigaBitmapFont objects: font8 <- getAmigaBitmapFont(font_example, 8) font9 <- getAmigaBitmapFont(font_example, 9) ## now bind these bitmaps again in a single set font.set <- c(font8, font9, name = "my_font_name") ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.