ImPaint is a small program based on imgui which allows simple picture editing.
Simply head to the releases to download the precompiled binaries.
You can use the Makefile, under Windows
, or Linux
:
mkdir objects
make -j
Run the compiled executable.
It needs C++17, OpenGL, and GLFW3 library. Specific platforms dependencies:
-
Windows
- Windows API required.
-
Linux
- Clip library required. (Included here, compiled on Ubuntu based distro).
- GLFW3 library required. (
apt-get install libglfw3-dev
for Debian based distro). - PNG library required. (
apt-get install libpng-dev
for Debian based distro).
Thanks to @ocornut for the graphical library imgui which is used for almost every drawing.
Thanks to @AirGuanZ for the imgui-filebrowser which allows to select files or directories, even on systems where calling the default file explorer is annoying.
Thanks to @dacap for the clip library, which allows to copy and paste images even on Linux (X11).