Extract image files from Microsoft Word documents!
This project depends on libzip. You will need to link the library yourself.
On Linux, it's very simple to build.
$ sudo apt install libzip-dev
$ g++ main.cpp -lzip
On Windows, I recommend using vcpkg and Visual Studio.
I am planning to add CMake support to this project.
.docx files are just zip files, and images are stored in the word/media
directory. This program just opens and reads image files in that directory and writes them somewhere else.