This is a collection of benchmarks to measure image loading times across different C/C++ imaging libraries.
Google Benchmark is used as the benchmarking framework.
The benchmarks use JPEG and PNG files as input with four different resolutions, grey and RGB.
Target platform: Windows x64 with MSVC 2019+.
Any contributions are highly welcomed.
The benchmarks test image loading (decoding) performance. Each library loads images using its default settings without pixel format conversions.
- Boost.GIL
- CImg
- DevIL
- FreeImage
- gdk-pixbuf
- GraphicsMagick
- OpenCV
- OpenImageIO
- SAIL
- SDL_Image
- stb_image
- WIC (Windows only)
Install vcpkg following the official instructions. Install CMake.
Clone vcpkg to ../vcpkg/ relative to the project directory:
cd ..
git clone https://github.com/microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh # Linux/Mac
# or
bootstrap-vcpkg.bat # WindowsAll dependencies are managed through vcpkg. The project includes a vcpkg.json manifest file that will automatically install required packages when configuring with CMake.
Build the project:
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build . --config ReleaseRun all benchmarks:
./run-benchmarks.shReleased under the MIT license.
Copyright (c) 2020-2026 Dmitry Baryshev
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.