Registry / utility / imageinfo

imageinfo

JSON →
library2026-03-19vcpkgunverified

A cross-platform, single-header C++ library to get image size and format without loading or decoding the image.

vcpkg install imageinfo
INSTALL
IMPORT
SIG · IMAGEINFO
I
imageinfo
utilitycppv2026-03-19
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

imageinfo.hpp
#include <imageinfo.hpp>

Loads an image file and prints its format and dimensions without decoding the full image.

#include "imageinfo.hpp" #include <fstream> #include <iostream> int main() { std::ifstream file("image.jpg", std::ios::binary); auto info = imageinfo::load(file); std::cout << info.format << " " << info.width << "x" << info.height << std::endl; return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2026-03-19latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources

No resource links recorded.

imageinfo — pip install imageinfo · libregistry