DxCreateFont: Difference between revisions
Jump to navigation
Jump to search
(Added example) |
No edit summary |
||
(24 intermediate revisions by 9 users not shown) | |||
Line 1: | Line 1: | ||
{{Client function}} | {{Client function}} | ||
__NOTOC__ | __NOTOC__ | ||
{{ | {{Note|The size can't be less than 5 or more than 150. Use this function after onClientResourceStart, otherwise some characters may be displayed incorrectly.}} | ||
<br/> | |||
}} | This function creates a [[DX font]] element that can be used in [[dxDrawText]]. Successful font creation is not guaranteed, and may fail due to hardware or memory limitations. | ||
This function creates a font element that can be used in | |||
To see if creation is likely to fail, use [[dxGetStatus]]. (When '''VideoMemoryFreeForMTA''' is zero, failure ''is'' guaranteed.) | |||
=====It is highly recommended that [[dxSetTestMode]] is used when writing and testing scripts using dxCreateFont.===== | |||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
element | element dxCreateFont ( string filepath[, int size=9, bool bold=false, string quality="proof" ] ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{OOP||[[DX_font|DxFont]]}} | |||
===Required Arguments=== | ===Required Arguments=== | ||
*'''filepath:''' the | *'''filepath:''' the name of the file containing the font | ||
===Optional Arguments=== | ===Optional Arguments=== | ||
*'''size:''' size of the font | *'''size:''' size of the font | ||
*'''bold:''' flag to indicate if the font should be bold | *'''bold:''' flag to indicate if the font should be bold | ||
*'''quality:''' the font quality | |||
** "default": not the actual default | |||
** "draft" | |||
** "proof": the default | |||
** "nonantialiased" | |||
** "antialiased" | |||
** "cleartype" | |||
** "cleartype_natural" | |||
===Returns=== | ===Returns=== | ||
Returns a [[font]] | Returns a [[DX font]] element if successful, ''false'' if invalid arguments were passed to the function, or there is insufficient resources available. | ||
'''You should always check to see if this function has returned false.''' | |||
==Example== | ==Example== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
local font = dxCreateFont('myfont.ttf', 20, false, 'proof') or 'default' -- fallback to default | |||
local | |||
addEventHandler('onClientRender', root, function() | |||
addEventHandler( | dxDrawText('Example Text', 100, 350, 300, 350, tocolor(255, 255, 0), 1, font) | ||
end) | |||
) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==See Also== | ==See Also== | ||
{{Drawing_functions}} | |||
[[hu:dxCreateFont]] |
Latest revision as of 12:26, 21 January 2024
This function creates a DX font element that can be used in dxDrawText. Successful font creation is not guaranteed, and may fail due to hardware or memory limitations.
To see if creation is likely to fail, use dxGetStatus. (When VideoMemoryFreeForMTA is zero, failure is guaranteed.)
It is highly recommended that dxSetTestMode is used when writing and testing scripts using dxCreateFont.
Syntax
element dxCreateFont ( string filepath[, int size=9, bool bold=false, string quality="proof" ] )
OOP Syntax Help! I don't understand this!
- Method: DxFont(...)
Required Arguments
- filepath: the name of the file containing the font
Optional Arguments
- size: size of the font
- bold: flag to indicate if the font should be bold
- quality: the font quality
- "default": not the actual default
- "draft"
- "proof": the default
- "nonantialiased"
- "antialiased"
- "cleartype"
- "cleartype_natural"
Returns
Returns a DX font element if successful, false if invalid arguments were passed to the function, or there is insufficient resources available.
You should always check to see if this function has returned false.
Example
local font = dxCreateFont('myfont.ttf', 20, false, 'proof') or 'default' -- fallback to default addEventHandler('onClientRender', root, function() dxDrawText('Example Text', 100, 350, 300, 350, tocolor(255, 255, 0), 1, font) end)
See Also
- dxConvertPixels
- dxCreateFont
- dxCreateRenderTarget
- dxCreateScreenSource
- dxCreateShader
- dxCreateTexture
- dxDrawCircle
- dxDrawImage
- dxDrawImageSection
- dxDrawLine
- dxDrawLine3D
- dxDrawMaterialLine3D
- dxDrawMaterialPrimitive
- dxDrawMaterialPrimitive3D
- dxDrawMaterialSectionLine3D
- dxDrawPrimitive
- dxDrawPrimitive3D
- dxDrawRectangle
- dxDrawText
- dxDrawWiredSphere
- dxGetBlendMode
- dxGetFontHeight
- dxGetMaterialSize
- dxGetPixelColor
- dxGetPixelsSize
- dxGetPixelsFormat
- dxGetStatus
- dxGetTextSize
- dxGetTextWidth
- dxGetTexturePixels
- dxIsAspectRatioAdjustmentEnabled
- dxSetAspectRatioAdjustmentEnabled
- dxSetBlendMode
- dxSetPixelColor
- dxSetRenderTarget
- dxSetShaderValue
- dxSetShaderTessellation
- dxSetShaderTransform
- dxSetTestMode
- dxSetTextureEdge
- dxSetTexturePixels
- dxUpdateScreenSource