|
|
@@ -85,18 +85,30 @@ sudo dnf install SDL2-devel
|
|
|
sudo pacman -S sdl2
|
|
|
```
|
|
|
|
|
|
----
|
|
|
+## FreeImage
|
|
|
+
|
|
|
+FreeImage is battle-tested library for loading and saving popular image file formats like BMP, PNG, JPEG etc. The minimum required version is 3.18 and can be installed via:
|
|
|
+
|
|
|
|
|
|
-## .NET
|
|
|
+### [Debian / Ubuntu](#tab/freeimage-ubuntu)
|
|
|
|
|
|
-For information about how to install .NET, see the [.NET instructions for Linux](https://docs.microsoft.com/en-us/dotnet/core/linux-prerequisites).
|
|
|
+```bash
|
|
|
+sudo apt install libfreeimage-dev
|
|
|
+```
|
|
|
|
|
|
-We recommend to install .NET 8. To check which version you have installed, type:
|
|
|
+### [Fedora](#tab/freeimage-fedora)
|
|
|
|
|
|
+```bash
|
|
|
+sudo dnf install freeimage-devel
|
|
|
```
|
|
|
-dotnet --info
|
|
|
+
|
|
|
+### [Arch](#tab/freeimage-arch)
|
|
|
+
|
|
|
+```bash
|
|
|
+sudo pacman -S freeimage
|
|
|
```
|
|
|
|
|
|
+
|
|
|
## See also
|
|
|
|
|
|
* [Create a Linux game](create-a-linux-game.md)
|