This functions loads a vector image from a file path or stream.
Parameter | Description |
---|---|
path | file path to load the icon from |
stream | stream to load the icon from |
flags | optional loading flags |
Returns the loaded icon object if successful, otherwise NULL is returned.
#include "UltraEngine.h"
using namespace UltraEngine;
int main(int argc, const char* argv[])
{
//Get the displays
auto displays = GetDisplays();
//Create window
auto window = CreateWindow("Ultra Engine", 0, 0, 800, 800, displays[0]);
//Create user interface
auto ui = CreateInterface(window);
//Create a pixmap
auto icon = LoadIcon("https://raw.githubusercontent.com/UltraEngine/Documentation/master/Assets/Materials/Logos/23.svg");
//Show the icon
ui->root->SetIcon(icon);
while (true)
{
const Event ev = WaitEvent();
switch (ev.id)
{
case EVENT_WINDOWCLOSE:
return 0;
break;
}
}
return 0;
}