Add test to validate jpeg parse
parent
0dd960940d
commit
6b5cb98411
@ -0,0 +1,28 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
// Sample program to parse jpeg files and obtain its specific metadata
|
||||
|
||||
#include <exiv2/exiv2.hpp>
|
||||
#include <exiv2/image_types.hpp>
|
||||
#include <iostream>
|
||||
|
||||
int main(int argc, char* const argv[]) {
|
||||
try {
|
||||
if (argc != 2) {
|
||||
std::cout << "Usage: " << argv[0] << " file\n";
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
auto image = Exiv2::ImageFactory::open(argv[1]);
|
||||
if (image->imageType() == Exiv2::ImageType::jpeg) {
|
||||
auto jpegImage = dynamic_cast<Exiv2::JpegImage*>(image.get());
|
||||
jpegImage->readMetadata();
|
||||
std::cout << "Number of color components: " << jpegImage->numColorComponents() << "\n";
|
||||
std::cout << "Encoding process: " << jpegImage->encodingProcess() << "\n";
|
||||
}
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
} catch (Exiv2::Error& e) {
|
||||
std::cout << "Caught Exiv2 exception '" << e << "'\n";
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import system_tests
|
||||
|
||||
class TestJpegParse(metaclass=system_tests.CaseMeta):
|
||||
url = "https://github.com/Exiv2/exiv2/pull/2874"
|
||||
|
||||
# Test extraction of jpeg specific metadata
|
||||
filename = "$data_path/exiv2-fujifilm-finepix-s2pro.jpg"
|
||||
commands = ["$jpegparsetest $filename"]
|
||||
stderr = [""] * len(commands)
|
||||
stdout = ["""Number of color components: 3\nEncoding process: Baseline DCT, Huffman coding\n"""]
|
||||
retval = [0] * len(commands)
|
Loading…
Reference in New Issue