DCX is a simple extension of PCX image format allowing to bundle many PCX images (typically, pages of a document) in one file. It saw some limited use in DOS-era fax software, but was largely superseded with multi-page TIFFs and PDFs since then.
This page hosts a formal specification of .dcx file format using Kaitai Struct. This specification can be automatically translated into a variety of programming languages to get a parsing library.
All parsing code for C++11/STL generated by Kaitai Struct depends on the C++/STL runtime library. You have to install it before you can parse data.
For C++, the easiest way is to clone the runtime library sources and build them along with your project.
Using Kaitai Struct in C++/STL usually consists of 3 steps.
std::istream
). One can open local file for that, or use existing std::string
or char*
buffer.
#include <fstream>
std::ifstream is("path/to/local/file.dcx", std::ifstream::binary);
#include <sstream>
std::istringstream is(str);
#include <sstream>
const char buf[] = { ... };
std::string str(buf, sizeof buf);
std::istringstream is(str);
#include "kaitai/kaitaistream.h"
kaitai::kstream ks(&is);
pcx_dcx_t data(&ks);
After that, one can get various attributes from the structure by invoking getter methods like:
data.magic() // => get magic
#pragma once
// This is a generated file! Please edit source .ksy file and use kaitai-struct-compiler to rebuild
#include "kaitai/kaitaistruct.h"
#include <stdint.h>
#include <memory>
#include "pcx.h"
#include <vector>
#if KAITAI_STRUCT_VERSION < 9000L
#error "Incompatible Kaitai Struct C++/STL API: version 0.9 or later is required"
#endif
class pcx_t;
/**
* DCX is a simple extension of PCX image format allowing to bundle
* many PCX images (typically, pages of a document) in one file. It saw
* some limited use in DOS-era fax software, but was largely
* superseded with multi-page TIFFs and PDFs since then.
*/
class pcx_dcx_t : public kaitai::kstruct {
public:
class pcx_offset_t;
pcx_dcx_t(kaitai::kstream* p__io, kaitai::kstruct* p__parent = nullptr, pcx_dcx_t* p__root = nullptr);
private:
void _read();
void _clean_up();
public:
~pcx_dcx_t();
class pcx_offset_t : public kaitai::kstruct {
public:
pcx_offset_t(kaitai::kstream* p__io, pcx_dcx_t* p__parent = nullptr, pcx_dcx_t* p__root = nullptr);
private:
void _read();
void _clean_up();
public:
~pcx_offset_t();
private:
bool f_body;
std::unique_ptr<pcx_t> m_body;
bool n_body;
public:
bool _is_null_body() { body(); return n_body; };
private:
public:
pcx_t* body();
private:
uint32_t m_ofs_body;
pcx_dcx_t* m__root;
pcx_dcx_t* m__parent;
public:
uint32_t ofs_body() const { return m_ofs_body; }
pcx_dcx_t* _root() const { return m__root; }
pcx_dcx_t* _parent() const { return m__parent; }
};
private:
std::string m_magic;
std::unique_ptr<std::vector<std::unique_ptr<pcx_offset_t>>> m_files;
pcx_dcx_t* m__root;
kaitai::kstruct* m__parent;
public:
std::string magic() const { return m_magic; }
std::vector<std::unique_ptr<pcx_offset_t>>* files() const { return m_files.get(); }
pcx_dcx_t* _root() const { return m__root; }
kaitai::kstruct* _parent() const { return m__parent; }
};
// This is a generated file! Please edit source .ksy file and use kaitai-struct-compiler to rebuild
#include "pcx_dcx.h"
#include "kaitai/exceptions.h"
pcx_dcx_t::pcx_dcx_t(kaitai::kstream* p__io, kaitai::kstruct* p__parent, pcx_dcx_t* p__root) : kaitai::kstruct(p__io) {
m__parent = p__parent;
m__root = this;
m_files = nullptr;
_read();
}
void pcx_dcx_t::_read() {
m_magic = m__io->read_bytes(4);
if (!(magic() == std::string("\xB1\x68\xDE\x3A", 4))) {
throw kaitai::validation_not_equal_error<std::string>(std::string("\xB1\x68\xDE\x3A", 4), magic(), _io(), std::string("/seq/0"));
}
m_files = std::unique_ptr<std::vector<std::unique_ptr<pcx_offset_t>>>(new std::vector<std::unique_ptr<pcx_offset_t>>());
{
int i = 0;
pcx_offset_t* _;
do {
_ = new pcx_offset_t(m__io, this, m__root);
m_files->push_back(std::move(std::unique_ptr<pcx_offset_t>(_)));
i++;
} while (!(_->ofs_body() == 0));
}
}
pcx_dcx_t::~pcx_dcx_t() {
_clean_up();
}
void pcx_dcx_t::_clean_up() {
}
pcx_dcx_t::pcx_offset_t::pcx_offset_t(kaitai::kstream* p__io, pcx_dcx_t* p__parent, pcx_dcx_t* p__root) : kaitai::kstruct(p__io) {
m__parent = p__parent;
m__root = p__root;
m_body = nullptr;
f_body = false;
_read();
}
void pcx_dcx_t::pcx_offset_t::_read() {
m_ofs_body = m__io->read_u4le();
}
pcx_dcx_t::pcx_offset_t::~pcx_offset_t() {
_clean_up();
}
void pcx_dcx_t::pcx_offset_t::_clean_up() {
if (f_body && !n_body) {
}
}
pcx_t* pcx_dcx_t::pcx_offset_t::body() {
if (f_body)
return m_body.get();
n_body = true;
if (ofs_body() != 0) {
n_body = false;
std::streampos _pos = m__io->pos();
m__io->seek(ofs_body());
m_body = std::unique_ptr<pcx_t>(new pcx_t(m__io));
m__io->seek(_pos);
f_body = true;
}
return m_body.get();
}