Difference between revisions of "Font"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(16 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''<translate>Supported platforms</translate>:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]]<br/>
+
<!-- GIDEROSOBJ:Font -->
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
+
'''Supported platforms:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]][[File:Platform html5.png]][[File:Platform winrt.png]][[File:Platform win32.png]]<br/>
'''<translate>Inherits from</translate>:''' [[Special:MyLanguage/FontBase|FontBase]]<br/>
+
'''Available since:''' Gideros 2011.6<br/>
=== <translate>Description</translate> ===
+
'''Inherits from:''' [[FontBase]]<br/>
<translate>The `Font` class is used to load fonts created by "Gideros Font Creator".<br />
+
 
<br />
+
=== Description ===
[[File:Font creator.png]]<br />
+
The '''Font''' class is used to load fonts created by "Gideros Font Creator".
<br />
+
 
<br />
+
[[File:Font creator.png]]
Gideros Font Creator exports two files: A `.txt` file that specifies the positions of character glyph a `.png` file of font.<br /></translate>
+
 
=== <translate>Examples</translate> ===
+
Gideros Font Creator exports two files:
'''Use these two files to create `Font` object as:'''<br/>
+
* a ''.txt'' file that specifies the positions of the character glyphs
<source lang="lua">local font = Font.new("font.txt", "font.png")</source>
+
* a ''.png'' file of the font
 +
 
 +
=== Example ===
 +
'''Use these two files to create a Font object'''
 +
<syntaxhighlight lang="lua">
 +
local font = Font.new("font.txt", "font.png")
 +
</syntaxhighlight>
 +
 
 
{|-
 
{|-
 
| style="width: 50%; vertical-align:top;"|
 
| style="width: 50%; vertical-align:top;"|
=== <translate>Methods</translate> ===
+
=== Methods ===
[[Special:MyLanguage/Font.getDefault|Font.getDefault]] ''<translate>Get default font</translate>''<br/>
+
[[Font.getDefault]] ''gets the default font''<br/><!--GIDEROSMTD:Font.getDefault() gets the default font-->
[[Special:MyLanguage/Font.new|Font.new]] ''<translate>creates a new Font object</translate>''<br/>
+
[[Font.new]] ''creates a new Font object''<br/><!--GIDEROSMTD:Font.new(txtfile,imagefile,filtering) creates a new Font object-->
 +
 
 
| style="width: 50%; vertical-align:top;"|
 
| style="width: 50%; vertical-align:top;"|
=== <translate>Events</translate> ===
+
=== Events ===
=== <translate>Constants</translate> ===
+
=== Constants ===
 
|}
 
|}
 +
 +
{{GIDEROS IMPORTANT LINKS}}

Latest revision as of 15:28, 13 July 2023

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

Description

The Font class is used to load fonts created by "Gideros Font Creator".

Font creator.png

Gideros Font Creator exports two files:

  • a .txt file that specifies the positions of the character glyphs
  • a .png file of the font

Example

Use these two files to create a Font object

local font = Font.new("font.txt", "font.png")

Methods

Font.getDefault gets the default font
Font.new creates a new Font object

Events

Constants