MCPcopy Create free account
hub / github.com/Exiv2/exiv2 / exifPrint

Function exifPrint

samples/write-test.cpp:155–163  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

153// *****************************************************************************
154
155void exifPrint(const ExifData& exifData) {
156 auto i = exifData.begin();
157 for (; i != exifData.end(); ++i) {
158 std::cout << std::setw(44) << std::setfill(' ') << std::left << i->key() << " "
159 << "0x" << std::setw(4) << std::setfill('0') << std::right << std::hex << i->tag() << " " << std::setw(9)
160 << std::setfill(' ') << std::left << i->typeName() << " " << std::dec << std::setw(3) << std::setfill(' ')
161 << std::right << i->count() << " " << std::dec << i->value() << "\n";
162 }
163}

Callers 1

testCaseFunction · 0.85

Calls 6

beginMethod · 0.45
endMethod · 0.45
keyMethod · 0.45
tagMethod · 0.45
typeNameMethod · 0.45
countMethod · 0.45

Tested by

no test coverage detected