You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
exiv2/src/orfimage_int.cpp

79 lines
2.3 KiB
C++

// ***************************************************************** -*- 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.
*/
#include "orfimage_int.hpp"
namespace Exiv2 {
namespace Internal {
OrfHeader::OrfHeader(ByteOrder byteOrder)
: TiffHeaderBase(0x4f52, 8, byteOrder, 0x00000008),
sig_(0x4f52)
{
}
OrfHeader::~OrfHeader()
{
}
bool OrfHeader::read(const byte* pData, uint32_t size)
{
if (size < 8) return false;
if (pData[0] == 'I' && pData[0] == pData[1]) {
setByteOrder(littleEndian);
}
else if (pData[0] == 'M' && pData[0] == pData[1]) {
setByteOrder(bigEndian);
}
else {
return false;
}
uint16_t sig = getUShort(pData + 2, byteOrder());
if (tag() != sig && 0x5352 != sig) return false; // #658: Added 0x5352 "SR" for SP-560UZ
sig_ = sig;
setOffset(getULong(pData + 4, byteOrder()));
return true;
} // OrfHeader::read
DataBuf OrfHeader::write() const
{
DataBuf buf(8);
switch (byteOrder()) {
case littleEndian:
buf.pData_[0] = 'I';
break;
case bigEndian:
buf.pData_[0] = 'M';
break;
case invalidByteOrder:
assert(false);
break;
}
buf.pData_[1] = buf.pData_[0];
us2Data(buf.pData_ + 2, sig_, byteOrder());
ul2Data(buf.pData_ + 4, 0x00000008, byteOrder());
return buf;
}
}} // namespace Internal, Exiv2