summaryrefslogtreecommitdiff
path: root/filter/pdftopdf/qpdf_tools.cc
blob: 40dad6d73a958628f0218a4b940a1429bd5b5c2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#include "qpdf_tools.h"

QPDFObjectHandle getMediaBox(QPDFObjectHandle page) // {{{
{
  return page.getKey("/MediaBox");
}
// }}}

QPDFObjectHandle getCropBox(QPDFObjectHandle page) // {{{
{
  if (page.hasKey("/CropBox")) {
    return page.getKey("/CropBox");
  }
  return page.getKey("/MediaBox");
}
// }}}

QPDFObjectHandle getBleedBox(QPDFObjectHandle page) // {{{
{
  if (page.hasKey("/BleedBox")) {
    return page.getKey("/BleedBox");
  }
  return getCropBox(page);
}
// }}}

QPDFObjectHandle getTrimBox(QPDFObjectHandle page) // {{{
{
  if (page.hasKey("/TrimBox")) {
    return page.getKey("/TrimBox");
  }
  return getCropBox(page);
}
// }}}

QPDFObjectHandle getArtBox(QPDFObjectHandle page) // {{{
{
  if (page.hasKey("/ArtBox")) {
    return page.getKey("/ArtBox");
  }
  return getCropBox(page);
}
// }}}

QPDFObjectHandle makePage(QPDF &pdf,const std::map<std::string,QPDFObjectHandle> &xobjs,QPDFObjectHandle mediabox,const std::string &content) // {{{
{
  QPDFObjectHandle ret=QPDFObjectHandle::newDictionary();
  ret.replaceKey("/Type",QPDFObjectHandle::newName("/Page"));

  auto resdict=QPDFObjectHandle::newDictionary();
  resdict.replaceKey("/XObject",QPDFObjectHandle::newDictionary(xobjs));
  ret.replaceKey("/Resources",resdict);
  ret.replaceKey("/MediaBox",mediabox);
  ret.replaceKey("/Contents",QPDFObjectHandle::newStream(&pdf,content));

  return ret;
}
// }}}

QPDFObjectHandle makeBox(double x1,double y1,double x2,double y2) // {{{
{
  QPDFObjectHandle ret=QPDFObjectHandle::newArray();
  ret.appendItem(QPDFObjectHandle::newReal(x1));
  ret.appendItem(QPDFObjectHandle::newReal(y1));
  ret.appendItem(QPDFObjectHandle::newReal(x2));
  ret.appendItem(QPDFObjectHandle::newReal(y2));
  return ret;
}
// }}}