LGUI2:imagebox

From Lavish Software Wiki
Revision as of 12:41, 27 June 2018 by Lax (talk | contribs) (Created page with "A LavishGUI 2 imagebox element has a standard Border and is tailored to display '''and size to''' an image. == Defining an imagebox element == An imagebox el...")
(diff) ←Older revision | view current revision (diff) | Newer revision→ (diff)
Jump to navigation Jump to search

A LavishGUI 2 imagebox element has a standard Border and is tailored to display and size to an image.

Defining an imagebox element

An imagebox element is a Element with the addition of an "imageBrush" property and standard Border properties.

imagebox element properties
imageBrush A Brush definition specifying the brush for the featured image
borderBrush A Brush definition specifying the brush for the standard Border
backgroundBrush A Brush definition specifying the brush for the background inside the Border
borderThickness A Thickness definition specifying the thickness for the standard Border

Examples

An imagebox element, with a 1 pixel margin around an image from a file
  {
           "type": "imagebox",
           "margin": [ 1, 1, 1, 1 ],
           "imageBrush": {
             "color": [ 1.0, 1.0, 1.0 ],
             "imageFile": "My image.png"
           }
         },