|
|
|
// ***************************************************************** -*- C++ -*-
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2004-2021 Exiv2 authors
|
|
|
|
* This program is part of the Exiv2 distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
// *****************************************************************************
|
|
|
|
// included header files
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "pgfimage.hpp"
|
|
|
|
#include "image.hpp"
|
|
|
|
#include "pngimage.hpp"
|
|
|
|
#include "basicio.hpp"
|
|
|
|
#include "enforce.hpp"
|
|
|
|
#include "error.hpp"
|
|
|
|
#include "futils.hpp"
|
|
|
|
|
|
|
|
// + standard includes
|
|
|
|
#include <cstdio> // for EOF
|
|
|
|
#include <string>
|
|
|
|
#include <cstring>
|
|
|
|
#include <iostream>
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
// Signature from front of PGF file
|
|
|
|
const unsigned char pgfSignature[3] = { 0x50, 0x47, 0x46 };
|
|
|
|
|
|
|
|
const unsigned char pgfBlank[] = { 0x50,0x47,0x46,0x36,0x10,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,
|
|
|
|
0x00,0x00,0x18,0x03,0x03,0x00,0x00,0x00,0x14,0x00,0x67,0x08,0x20,0x00,0xc0,0x01,
|
|
|
|
0x00,0x00,0x37,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x37,0x00,
|
|
|
|
0x00,0x78,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x37,0x00,0x00,0x78,0x00,0x00,
|
|
|
|
0x00,0x00,0x01,0x00,0x00,0x00,0x37,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x01,0x00,
|
|
|
|
0x00,0x00,0x37,0x00,0x00,0x78,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x37,0x00,
|
|
|
|
0x00,0x78,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// *****************************************************************************
|
|
|
|
// class member definitions
|
|
|
|
|
|
|
|
namespace Exiv2 {
|
|
|
|
|
|
|
|
static uint32_t byteSwap_(uint32_t value,bool bSwap)
|
|
|
|
{
|
|
|
|
uint32_t result = 0;
|
|
|
|
result |= (value & 0x000000FF) << 24;
|
|
|
|
result |= (value & 0x0000FF00) << 8;
|
|
|
|
result |= (value & 0x00FF0000) >> 8;
|
|
|
|
result |= (value & 0xFF000000) >> 24;
|
|
|
|
return bSwap ? result : value;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t byteSwap_(Exiv2::DataBuf& buf,size_t offset,bool bSwap)
|
|
|
|
{
|
|
|
|
uint32_t v = 0;
|
|
|
|
auto p = reinterpret_cast<byte*>(&v);
|
|
|
|
int i;
|
|
|
|
for ( i = 0 ; i < 4 ; i++ ) p[i] = buf.read_uint8(offset+i);
|
|
|
|
uint32_t result = byteSwap_(v,bSwap);
|
|
|
|
p = reinterpret_cast<byte*>(&result);
|
|
|
|
for ( i = 0 ; i < 4 ; i++ ) buf.write_uint8(offset+i, p[i]);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
PgfImage::PgfImage(BasicIo::UniquePtr io, bool create)
|
|
|
|
: Image(ImageType::pgf, mdExif | mdIptc| mdXmp | mdComment, std::move(io))
|
|
|
|
, bSwap_(isBigEndianPlatform())
|
|
|
|
{
|
|
|
|
if (create)
|
|
|
|
{
|
|
|
|
if (io_->open() == 0)
|
|
|
|
{
|
|
|
|
#ifdef EXIV2_DEBUG_MESSAGES
|
|
|
|
std::cerr << "Exiv2::PgfImage:: Creating PGF image to memory\n";
|
|
|
|
#endif
|
|
|
|
IoCloser closer(*io_);
|
|
|
|
if (io_->write(pgfBlank, sizeof(pgfBlank)) != sizeof(pgfBlank))
|
|
|
|
{
|
|
|
|
#ifdef EXIV2_DEBUG_MESSAGES
|
|
|
|
std::cerr << "Exiv2::PgfImage:: Failed to create PGF image on memory\n";
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // PgfImage::PgfImage
|
|
|
|
|
|
|
|
void PgfImage::readMetadata()
|
|
|
|
{
|
|
|
|
#ifdef EXIV2_DEBUG_MESSAGES
|
|
|
|
std::cerr << "Exiv2::PgfImage::readMetadata: Reading PGF file " << io_->path() << "\n";
|
|
|
|
#endif
|
|
|
|
if (io_->open() != 0)
|
|
|
|
{
|
|
|
|
throw Error(kerDataSourceOpenFailed, io_->path(), strError());
|
|
|
|
}
|
|
|
|
IoCloser closer(*io_);
|
|
|
|
// Ensure that this is the correct image type
|
|
|
|
if (!isPgfType(*io_, true))
|
|
|
|
{
|
|
|
|
if (io_->error() || io_->eof()) throw Error(kerFailedToReadImageData);
|
|
|
|
throw Error(kerNotAnImage, "PGF");
|
|
|
|
}
|
|
|
|
clearMetadata();
|
|
|
|
|
|
|
|
readPgfMagicNumber(*io_);
|
|
|
|
|
|
|
|
uint32_t headerSize = readPgfHeaderSize(*io_);
|
|
|
|
readPgfHeaderStructure(*io_, pixelWidth_, pixelHeight_);
|
|
|
|
|
|
|
|
// And now, the most interresting, the user data byte array where metadata are stored as small image.
|
|
|
|
|
|
|
|
enforce(headerSize <= std::numeric_limits<uint32_t>::max() - 8, kerCorruptedMetadata);
|
|
|
|
#if LONG_MAX < UINT_MAX
|
|
|
|
enforce(headerSize + 8 <= static_cast<uint32_t>(std::numeric_limits<long>::max()),
|
|
|
|
kerCorruptedMetadata);
|
|
|
|
#endif
|
|
|
|
long size = static_cast<long>(headerSize) + 8 - io_->tell();
|
|
|
|
|
|
|
|
#ifdef EXIV2_DEBUG_MESSAGES
|
|
|
|
std::cout << "Exiv2::PgfImage::readMetadata: Found Image data (" << size << " bytes)\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (size < 0 || static_cast<size_t>(size) > io_->size()) throw Error(kerInputDataReadFailed);
|
|
|
|
if (size == 0) return;
|
|
|
|
|
|
|
|
DataBuf imgData(size);
|
|
|
|
imgData.clear();
|
|
|
|
long bufRead = io_->read(imgData.data(0), imgData.size());
|
|
|
|
if (io_->error()) throw Error(kerFailedToReadImageData);
|
|
|
|
if (bufRead != imgData.size()) throw Error(kerInputDataReadFailed);
|
|
|
|
|
|
|
|
Image::UniquePtr image = Exiv2::ImageFactory::open(imgData.c_data(0), imgData.size());
|
|
|
|
image->readMetadata();
|
|
|
|
exifData() = image->exifData();
|
|
|
|
iptcData() = image->iptcData();
|
|
|
|
xmpData() = image->xmpData();
|
|
|
|
|
|
|
|
} // PgfImage::readMetadata
|
|
|
|
|
|
|
|
void PgfImage::writeMetadata()
|
|
|
|
{
|
|
|
|
if (io_->open() != 0)
|
|
|
|
{
|
|
|
|
throw Error(kerDataSourceOpenFailed, io_->path(), strError());
|
|
|
|
}
|
|
|
|
IoCloser closer(*io_);
|
|
|
|
BasicIo::UniquePtr tempIo(new MemIo);
|
|
|
|
assert (tempIo.get() != 0);
|
|
|
|
|
|
|
|
doWriteMetadata(*tempIo); // may throw
|
|
|
|
io_->close();
|
|
|
|
io_->transfer(*tempIo); // may throw
|
|
|
|
|
|
|
|
} // PgfImage::writeMetadata
|
|
|
|
|
|
|
|
void PgfImage::doWriteMetadata(BasicIo& outIo)
|
|
|
|
{
|
|
|
|
if (!io_->isopen()) throw Error(kerInputDataReadFailed);
|
|
|
|
if (!outIo.isopen()) throw Error(kerImageWriteFailed);
|
|
|
|
|
|
|
|
#ifdef EXIV2_DEBUG_MESSAGES
|
|
|
|
std::cout << "Exiv2::PgfImage::doWriteMetadata: Writing PGF file " << io_->path() << "\n";
|
|
|
|
std::cout << "Exiv2::PgfImage::doWriteMetadata: tmp file created " << outIo.path() << "\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Ensure that this is the correct image type
|
|
|
|
if (!isPgfType(*io_, true))
|
|
|
|
{
|
|
|
|
if (io_->error() || io_->eof()) throw Error(kerInputDataReadFailed);
|
|
|
|
throw Error(kerNoImageInInputData);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure PGF version.
|
|
|
|
byte mnb = readPgfMagicNumber(*io_);
|
|
|
|
|
|
|
|
readPgfHeaderSize(*io_);
|
|
|
|
|
|
|
|
int w = 0, h = 0;
|
|
|
|
DataBuf header = readPgfHeaderStructure(*io_, w, h);
|
|
|
|
|
|
|
|
Image::UniquePtr img = ImageFactory::create(ImageType::png);
|
|
|
|
|
|
|
|
img->setExifData(exifData_);
|
|
|
|
img->setIptcData(iptcData_);
|
|
|
|
img->setXmpData(xmpData_);
|
|
|
|
img->writeMetadata();
|
|
|
|
long imgSize = static_cast<long>(img->io().size());
|
|
|
|
DataBuf imgBuf = img->io().read(imgSize);
|
|
|
|
|
|
|
|
#ifdef EXIV2_DEBUG_MESSAGES
|
|
|
|
std::cout << "Exiv2::PgfImage::doWriteMetadata: Creating image to host metadata (" << imgSize << " bytes)\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//---------------------------------------------------------------
|
|
|
|
|
|
|
|
// Write PGF Signature.
|
|
|
|
if (outIo.write(pgfSignature, 3) != 3) throw Error(kerImageWriteFailed);
|
|
|
|
|
|
|
|
// Write Magic number.
|
|
|
|
if (outIo.putb(mnb) == EOF) throw Error(kerImageWriteFailed);
|
|
|
|
|
|
|
|
// Write new Header size.
|
|
|
|
uint32_t newHeaderSize = header.size() + imgSize;
|
|
|
|
DataBuf buffer(4);
|
|
|
|
buffer.copyBytes(0, &newHeaderSize, 4);
|
|
|
|
byteSwap_(buffer,0,bSwap_);
|
|
|
|
if (outIo.write(buffer.c_data(0), 4) != 4) throw Error(kerImageWriteFailed);
|
|
|
|
|
|
|
|
#ifdef EXIV2_DEBUG_MESSAGES
|
|
|
|
std::cout << "Exiv2::PgfImage: new PGF header size : " << newHeaderSize << " bytes\n";
|
|
|
|
|
|
|
|
printf("%x\n", buffer.read_uint8(0));
|
|
|
|
printf("%x\n", buffer.read_uint8(1));
|
|
|
|
printf("%x\n", buffer.read_uint8(2));
|
|
|
|
printf("%x\n", buffer.read_uint8(3));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Write Header data.
|
|
|
|
if (outIo.write(header.c_data(0), header.size()) != header.size()) throw Error(kerImageWriteFailed);
|
|
|
|
|
|
|
|
// Write new metadata byte array.
|
|
|
|
if (outIo.write(imgBuf.c_data(0), imgBuf.size()) != imgBuf.size()) throw Error(kerImageWriteFailed);
|
|
|
|
|
|
|
|
// Copy the rest of PGF image data.
|
|
|
|
|
|
|
|
DataBuf buf(4096);
|
|
|
|
long readSize = 0;
|
|
|
|
while ((readSize=io_->read(buf.data(0), buf.size())))
|
|
|
|
{
|
|
|
|
if (outIo.write(buf.c_data(0), readSize) != readSize) throw Error(kerImageWriteFailed);
|
|
|
|
}
|
|
|
|
if (outIo.error()) throw Error(kerImageWriteFailed);
|
|
|
|
|
|
|
|
} // PgfImage::doWriteMetadata
|
|
|
|
|
|
|
|
byte PgfImage::readPgfMagicNumber(BasicIo& iIo)
|
|
|
|
{
|
|
|
|
byte b = iIo.getb();
|
|
|
|
if (iIo.error()) throw Error(kerFailedToReadImageData);
|
|
|
|
|
|
|
|
if (b < 0x36) // 0x36 = '6'.
|
|
|
|
{
|
|
|
|
// Not right Magick version.
|
|
|
|
#ifdef EXIV2_DEBUG_MESSAGES
|
|
|
|
std::cout << "Exiv2::PgfImage::readMetadata: wrong Magick number\n";
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
return b;
|
|
|
|
} // PgfImage::readPgfMagicNumber
|
|
|
|
|
|
|
|
uint32_t PgfImage::readPgfHeaderSize(BasicIo& iIo) const
|
|
|
|
{
|
|
|
|
DataBuf buffer(4);
|
|
|
|
long bufRead = iIo.read(buffer.data(0), buffer.size());
|
|
|
|
if (iIo.error()) throw Error(kerFailedToReadImageData);
|
|
|
|
if (bufRead != buffer.size()) throw Error(kerInputDataReadFailed);
|
|
|
|
|
|
|
|
int headerSize = static_cast<int>(byteSwap_(buffer, 0, bSwap_));
|
|
|
|
if (headerSize <= 0 ) throw Error(kerNoImageInInputData);
|
|
|
|
|
|
|
|
#ifdef EXIV2_DEBUG_MESSAGES
|
|
|
|
std::cout << "Exiv2::PgfImage: PGF header size : " << headerSize << " bytes\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return headerSize;
|
|
|
|
} // PgfImage::readPgfHeaderSize
|
|
|
|
|
|
|
|
DataBuf PgfImage::readPgfHeaderStructure(BasicIo& iIo, int& width, int& height) const
|
|
|
|
{
|
|
|
|
DataBuf header(16);
|
|
|
|
long bufRead = iIo.read(header.data(0), header.size());
|
|
|
|
if (iIo.error()) throw Error(kerFailedToReadImageData);
|
|
|
|
if (bufRead != header.size()) throw Error(kerInputDataReadFailed);
|
|
|
|
|
|
|
|
DataBuf work(8); // don't disturb the binary data - doWriteMetadata reuses it
|
|
|
|
work.copyBytes(0,header.c_data(0),8);
|
|
|
|
width = byteSwap_(work,0,bSwap_);
|
|
|
|
height = byteSwap_(work,4,bSwap_);
|
|
|
|
|
|
|
|
/* NOTE: properties not yet used
|
|
|
|
byte nLevels = buffer.pData_[8];
|
|
|
|
byte quality = buffer.pData_[9];
|
|
|
|
byte bpp = buffer.pData_[10];
|
|
|
|
byte channels = buffer.pData_[11];
|
|
|
|
*/
|
|
|
|
byte mode = header.read_uint8(12);
|
|
|
|
|
|
|
|
if (mode == 2) // Indexed color image. We pass color table (256 * 3 bytes).
|
|
|
|
{
|
|
|
|
header.alloc(16 + 256*3);
|
|
|
|
|
|
|
|
bufRead = iIo.read(header.data(16), 256*3);
|
|
|
|
if (iIo.error()) throw Error(kerFailedToReadImageData);
|
|
|
|
if (bufRead != 256*3) throw Error(kerInputDataReadFailed);
|
|
|
|
}
|
|
|
|
|
|
|
|
return header;
|
|
|
|
} // PgfImage::readPgfHeaderStructure
|
|
|
|
|
|
|
|
// *************************************************************************
|
|
|
|
// free functions
|
|
|
|
Image::UniquePtr newPgfInstance(BasicIo::UniquePtr io, bool create)
|
|
|
|
{
|
|
|
|
Image::UniquePtr image(new PgfImage(std::move(io), create));
|
|
|
|
if (!image->good())
|
|
|
|
{
|
|
|
|
image.reset();
|
|
|
|
}
|
|
|
|
return image;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isPgfType(BasicIo& iIo, bool advance)
|
|
|
|
{
|
|
|
|
const int32_t len = 3;
|
|
|
|
byte buf[len];
|
|
|
|
iIo.read(buf, len);
|
|
|
|
if (iIo.error() || iIo.eof())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
int rc = memcmp(buf, pgfSignature, 3);
|
|
|
|
if (!advance || rc != 0)
|
|
|
|
{
|
|
|
|
iIo.seek(-len, BasicIo::cur);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc == 0;
|
|
|
|
}
|
|
|
|
} // namespace Exiv2
|