getImage: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 7: | Line 7: | ||
<syntaxhighlight lang="mtmacro" line> | <syntaxhighlight lang="mtmacro" line> | ||
getImage(name) | getImage(name) | ||
getImage(name, size) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
'''Parameters''' | '''Parameters''' | ||
{{param|name|Token name.}} '''Note:''' Token ID is | {{param|name|Token name.}} '''Note:''' Token ID cannot be used. | ||
{{param|size|Image size.}} Optional. Specify the size of the image that is called out in the asset string returned. | |||
If identical token names appear on multiple maps, it may be difficult (or impossible) to select a specific token image using this function. | If identical token names appear on multiple maps, it may be difficult (or impossible) to select a specific token image using this function. | ||
Line 24: | Line 26: | ||
<img src="[r: getImage('Dragon')]"></img> | <img src="[r: getImage('Dragon')]"></img> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
To display the image in chat with a max dimension of 100: | |||
<syntaxhighlight lang="mtmacro" line> | |||
<img src="[r: getImage('Hero',100)]"></img> | |||
</syntaxhighlight > | |||
|also=[[getTokenImage]] (which you can give the size as parameter) | |also=[[getTokenImage]] (which you can give the size as parameter) | ||
}} | }} | ||
[[Category:Miscellaneous Function]] | [[Category:Miscellaneous Function]] |
Revision as of 17:15, 21 August 2021
getImage() Function
• Introduced in version 1.3b48
Usage
getImage(name)
getImage(name, size)
Parameters
name
- Token name. Note: Token ID cannot be used.size
- Image size. Optional. Specify the size of the image that is called out in the asset string returned.
If identical token names appear on multiple maps, it may be difficult (or impossible) to select a specific token image using this function.
Example
To display the image from an image token called
image:Map
you can do the following:
<img src="[r: getImage('image:Map')]"></img>
Alternatively this can be used to retrieve a normal token:
<img src="[r: getImage('Dragon')]"></img>
To display the image in chat with a max dimension of 100:
<img src="[r: getImage('Hero',100)]"></img>
See Also
getTokenImage (which you can give the size as parameter)