Non-Windows Environment

Imagise SDKs support .NET Standard 2.0, enabling them to be used in .NET Core applications running on Linux or other non-Windows environments. To ensure optimal performance and accurate text rendering, follow the steps below:

1. Install libgdiplus Package

The libgdiplus package provides essential GDI+ functionality, critical for rendering and processing. Install it by running the following command in your terminal:

sudo apt-get install libgdiplus

2. Install Microsoft Compatible Fonts

To ensure correct text rendering, install Microsoft TrueType fonts using:

sudo apt-get install ttf-mscorefonts-installer

These fonts should be located in the /usr/share/fonts/truetype/msttcorefonts directory. If your system uses a different directory, update the path in your code before performing any operations with Imagise SDKs:

Tip

By installing these packages and configuring the font path correctly, you can maximize the performance of Imagise SDKs on Linux or other non-Windows systems.