Will-Banksy / Image-Library

This is a wrapper around stb_image and stb_image_write, it provides a single class, Image, which can be used as an object to store an image but also has static functions to simply get the bytes from an image file

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Image Library (ILib)

This is a wrapper around stb_image and stb_image_write, it provides a single class, Image, which can be used as an object to store an image but also has static functions to simply get the bytes from an image file

Compiling

Shared Library

Simply run cmake and make (or ninja or whatever you want to use)

First make a build directory in the project root directory and enter that, then:

cmake ..
make

Static Library

Simply run cmake (but setting the option ILIB_STATIC to ON) and make (or ninja or whatever you want to use)

First make a build directory in the project root directory and enter that, then:

cmake -DILIB_STATIC=ON ..
make

About

This is a wrapper around stb_image and stb_image_write, it provides a single class, Image, which can be used as an object to store an image but also has static functions to simply get the bytes from an image file

License:MIT License


Languages

Language:C 98.3%Language:C++ 1.3%Language:CMake 0.4%