Difference between revisions of "CompositeFont"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 10: Line 10:
 
=== Example ===
 
=== Example ===
 
'''Drawing a black outline''':
 
'''Drawing a black outline''':
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
local str = "My Composite Font text"
 
local str = "My Composite Font text"
 
local nf = TTFont.new("fonts/Tahoma.ttf", 32, str, true) --Normal
 
local nf = TTFont.new("fonts/Tahoma.ttf", 32, str, true) --Normal

Revision as of 15:26, 13 July 2023

Supported platforms: Platform android.pngPlatform ios.pngPlatform mac.pngPlatform pc.pngPlatform html5.pngPlatform winrt.pngPlatform win32.png
Available since: Gideros 2019.1
Inherits from: FontBase

Description

The CompositeFont class is used to define fonts composed from other fonts. It allows to mix a regular font with an outlined font to create bordered font, and possibly more effects.

Example

Drawing a black outline: <syntaxhighlight lang="lua"> local str = "My Composite Font text" local nf = TTFont.new("fonts/Tahoma.ttf", 32, str, true) --Normal local of = TTFont.new("fonts/Tahoma.ttf", 32, str, true, 3) --Outlined local cf= CompositeFont.new{ -- *** PLEASE NOTICE THE CURLY BRACES { } INSTEAD OF ( ) *** { font=of, color=0x0 }, -- draw outline in black { font=nf, x=1, y=2 }, -- draw normal text with an offset } local tf = TextField.new(cf, str) tf:setTextColor(0xff0000) tf:setPosition(16, 64) stage:addChild(tf) </source>

Methods

CompositeFont.new creates a new CompositeFont object

Events

Constants