getImage: Difference between revisions
Jump to navigation
Jump to search
m (Fixing wikilink) |
No edit summary |
||
(19 intermediate revisions by 6 users not shown) | |||
Line 2: | Line 2: | ||
|name=getImage | |name=getImage | ||
|version=1.3b48 | |version=1.3b48 | ||
|description=Returns the [[ | |description=Returns the [[Asset ID]] for the image of a [[Token]] or [[Image Token]] found on any map in the campaign. | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
getImage( | getImage(tokenRef) | ||
</ | getImage(tokenRef, size) | ||
</syntaxhighlight> | |||
'''Parameters''' | |||
{{param|tokenRef|Either the token [[getSelected|{{code|id}}]] or [[getTokenName|Token Name]] of the token for which you want to retrieve the token image, defaults to the [[Current Token]].}} | |||
{{param|size|Image size.}} Optional. Specify the size of the image that is called out in the asset string returned. | |||
{{Note|Token IDs are unique, but Token Names can be duplicated. Using Token Name when more than one token has the same name can produce unexpected results.}} | |||
|example= | |example= | ||
To display the image from an [[Token:image token{{!}}image token]] called | To display the image from an [[Token:image token{{!}}image token]] called {{code|image:Map}} you can do the following: | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
<img src="[r: getImage('image:Map')]"></img> | <img src="[r: getImage('image:Map')]"></img> | ||
</ | </syntaxhighlight > | ||
Alternatively this can be used to retrieve a normal token: | |||
<syntaxhighlight lang="mtmacro" line> | |||
<img src="[r: getImage('Dragon')]"></img> | |||
</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) | |||
}} | }} | ||
[[Category:Miscellaneous Function]] | [[Category:Miscellaneous Function]] |
Latest revision as of 23:59, 10 May 2024
getImage() Function
• Introduced in version 1.3b48
Usage
getImage(tokenRef)
getImage(tokenRef, size)
Parameters
tokenRef
- Either the tokenid
or Token Name of the token for which you want to retrieve the token image, defaults to the Current Token.size
- Image size. Optional. Specify the size of the image that is called out in the asset string returned.
Token IDs are unique, but Token Names can be duplicated. Using Token Name when more than one token has the same name can produce unexpected results.
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)