📜 ⬆️ ⬇️

Brief Description of the CImg Library

Good day!

All the time, image processing (compression algorithms, filters, etc.) was very much attracting attention. Alas, it turned out that the work is practically not connected either with image processing or with programming in general. Nevertheless, interest in my favorite work has not diminished, and therefore I want to bring to your attention the recently opened CImg library.

CImg is a C ++ library that provides classes and image processing functions. These include elementary functions (loading, saving, viewing), and algorithms for resizing / rotating, applying effects, drawing objects (text, lines, surfaces, ellipses, ...), etc.

Library structure


The library consists of a single header file CImg.h , which includes all the classes and functions of the CImg. This is a distinctive feature of the library, which has some advantages:

The CImg library has the following structure:

Source: https://habr.com/ru/post/140935/


All Articles