1//
2// Image.cpp
3//
4// Library: PDF
5// Package: PDFCore
6// Module: Image
7//
8// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
9// and Contributors.
10//
11// SPDX-License-Identifier: BSL-1.0
12//
13
14
15#include "Poco/PDF/Image.h"
16
17
18namespace Poco {
19namespace PDF {
20
21
22Image::Image(HPDF_Doc* pPDF, const HPDF_Image& resource, const std::string& name):
23 Resource<HPDF_Image>(pPDF, resource, name)
24{
25}
26
27
28
29Image::~Image()
30{
31}
32
33
34} } // namespace Poco::PDF
35