Registry / serialization / pngpp
library0.2.10vcpkgunverified

C++ wrapper for the libpng library providing a simple interface for PNG image manipulation.

vcpkg install pngpp
INSTALL
IMPORT
SIG · PNGPP
P
pngpp
serializationcppv0.2.10
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.

png++/png.hpp
#include <png++/png.hpp>

Create and save a PNG image

#include <png++/png.hpp> #include <iostream> int main() { png::image<png::rgb_pixel> image(128, 128); for (size_t y = 0; y < image.get_height(); ++y) for (size_t x = 0; x < image.get_width(); ++x) image[y][x] = png::rgb_pixel(x, y, 128); image.write("output.png"); std::cout << "PNG written" << std::endl; return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.2.10latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
5 hits · last 30 days
node
4
Amazon
1
Resources

No resource links recorded.

pngpp — pip install pngpp · libregistry