2018-06-18 19:05:53 +00:00
|
|
|
#include <qpdf/QPDFPageDocumentHelper.hh>
|
2019-01-01 04:08:57 +00:00
|
|
|
#include <qpdf/QPDFAcroFormDocumentHelper.hh>
|
2019-01-03 02:44:10 +00:00
|
|
|
#include <qpdf/QUtil.hh>
|
2019-01-01 04:08:57 +00:00
|
|
|
#include <qpdf/QTC.hh>
|
2018-06-18 19:05:53 +00:00
|
|
|
|
|
|
|
QPDFPageDocumentHelper::Members::~Members()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QPDFPageDocumentHelper::Members::Members()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QPDFPageDocumentHelper::QPDFPageDocumentHelper(QPDF& qpdf) :
|
|
|
|
QPDFDocumentHelper(qpdf)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<QPDFPageObjectHelper>
|
|
|
|
QPDFPageDocumentHelper::getAllPages()
|
|
|
|
{
|
|
|
|
std::vector<QPDFObjectHandle> const& pages_v = this->qpdf.getAllPages();
|
|
|
|
std::vector<QPDFPageObjectHelper> pages;
|
|
|
|
for (std::vector<QPDFObjectHandle>::const_iterator iter = pages_v.begin();
|
|
|
|
iter != pages_v.end(); ++iter)
|
|
|
|
{
|
|
|
|
pages.push_back(QPDFPageObjectHelper(*iter));
|
|
|
|
}
|
|
|
|
return pages;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFPageDocumentHelper::pushInheritedAttributesToPage()
|
|
|
|
{
|
|
|
|
this->qpdf.pushInheritedAttributesToPage();
|
|
|
|
}
|
|
|
|
|
2018-06-22 00:16:05 +00:00
|
|
|
void
|
|
|
|
QPDFPageDocumentHelper::removeUnreferencedResources()
|
|
|
|
{
|
|
|
|
std::vector<QPDFPageObjectHelper> pages = getAllPages();
|
|
|
|
for (std::vector<QPDFPageObjectHelper>::iterator iter = pages.begin();
|
|
|
|
iter != pages.end(); ++iter)
|
|
|
|
{
|
|
|
|
(*iter).removeUnreferencedResources();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-18 19:05:53 +00:00
|
|
|
void
|
|
|
|
QPDFPageDocumentHelper::addPage(QPDFPageObjectHelper newpage, bool first)
|
|
|
|
{
|
|
|
|
this->qpdf.addPage(newpage.getObjectHandle(), first);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFPageDocumentHelper::addPageAt(QPDFPageObjectHelper newpage, bool before,
|
|
|
|
QPDFPageObjectHelper refpage)
|
|
|
|
{
|
|
|
|
this->qpdf.addPageAt(newpage.getObjectHandle(), before,
|
|
|
|
refpage.getObjectHandle());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFPageDocumentHelper::removePage(QPDFPageObjectHelper page)
|
|
|
|
{
|
|
|
|
this->qpdf.removePage(page.getObjectHandle());
|
|
|
|
}
|
2019-01-01 04:08:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
void
|
2019-01-03 16:51:58 +00:00
|
|
|
QPDFPageDocumentHelper::flattenAnnotations(
|
|
|
|
int required_flags,
|
|
|
|
int forbidden_flags)
|
2019-01-01 04:08:57 +00:00
|
|
|
{
|
|
|
|
QPDFAcroFormDocumentHelper afdh(this->qpdf);
|
|
|
|
if (afdh.getNeedAppearances())
|
|
|
|
{
|
|
|
|
this->qpdf.getRoot().getKey("/AcroForm").warnIfPossible(
|
|
|
|
"document does not have updated appearance streams,"
|
|
|
|
" so form fields will not be flattened");
|
|
|
|
}
|
|
|
|
std::vector<QPDFPageObjectHelper> pages = getAllPages();
|
|
|
|
for (std::vector<QPDFPageObjectHelper>::iterator iter = pages.begin();
|
|
|
|
iter != pages.end(); ++iter)
|
|
|
|
{
|
|
|
|
QPDFPageObjectHelper ph(*iter);
|
2019-01-25 11:55:31 +00:00
|
|
|
QPDFObjectHandle resources = ph.getAttribute("/Resources", true);
|
2019-01-01 04:08:57 +00:00
|
|
|
if (! resources.isDictionary())
|
|
|
|
{
|
|
|
|
// This should never happen and is not exercised in the
|
|
|
|
// test suite
|
|
|
|
resources = QPDFObjectHandle::newDictionary();
|
|
|
|
}
|
2019-01-03 16:51:58 +00:00
|
|
|
flattenAnnotationsForPage(ph, resources, afdh,
|
|
|
|
required_flags, forbidden_flags);
|
2019-01-01 04:08:57 +00:00
|
|
|
}
|
|
|
|
if (! afdh.getNeedAppearances())
|
|
|
|
{
|
|
|
|
this->qpdf.getRoot().removeKey("/AcroForm");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
QPDFPageDocumentHelper::flattenAnnotationsForPage(
|
|
|
|
QPDFPageObjectHelper& page,
|
|
|
|
QPDFObjectHandle& resources,
|
2019-01-03 16:51:58 +00:00
|
|
|
QPDFAcroFormDocumentHelper& afdh,
|
|
|
|
int required_flags,
|
|
|
|
int forbidden_flags)
|
2019-01-01 04:08:57 +00:00
|
|
|
{
|
|
|
|
bool need_appearances = afdh.getNeedAppearances();
|
|
|
|
std::vector<QPDFAnnotationObjectHelper> annots = page.getAnnotations();
|
|
|
|
std::vector<QPDFObjectHandle> new_annots;
|
|
|
|
std::string new_content;
|
|
|
|
int rotate = 0;
|
|
|
|
QPDFObjectHandle rotate_obj =
|
|
|
|
page.getObjectHandle().getKey("/Rotate");
|
|
|
|
if (rotate_obj.isInteger() && rotate_obj.getIntValue())
|
|
|
|
{
|
2019-06-21 03:35:23 +00:00
|
|
|
rotate = rotate_obj.getIntValueAsInt();
|
2019-01-01 04:08:57 +00:00
|
|
|
}
|
2019-01-03 02:44:10 +00:00
|
|
|
int next_fx = 1;
|
2019-01-01 04:08:57 +00:00
|
|
|
for (std::vector<QPDFAnnotationObjectHelper>::iterator iter =
|
|
|
|
annots.begin();
|
|
|
|
iter != annots.end(); ++iter)
|
|
|
|
{
|
|
|
|
QPDFAnnotationObjectHelper& aoh(*iter);
|
|
|
|
QPDFObjectHandle as = aoh.getAppearanceStream("/N");
|
|
|
|
bool is_widget = (aoh.getSubtype() == "/Widget");
|
|
|
|
bool process = true;
|
|
|
|
if (need_appearances && is_widget)
|
|
|
|
{
|
|
|
|
QTC::TC("qpdf", "QPDFPageDocumentHelper skip widget need appearances");
|
|
|
|
process = false;
|
|
|
|
}
|
2019-01-21 01:40:56 +00:00
|
|
|
if (process && as.isStream())
|
2019-01-01 04:08:57 +00:00
|
|
|
{
|
|
|
|
if (is_widget)
|
|
|
|
{
|
|
|
|
QTC::TC("qpdf", "QPDFPageDocumentHelper merge DR");
|
|
|
|
QPDFFormFieldObjectHelper ff = afdh.getFieldForAnnotation(aoh);
|
2019-01-03 02:44:10 +00:00
|
|
|
QPDFObjectHandle as_resources =
|
|
|
|
as.getDict().getKey("/Resources");
|
|
|
|
if (as_resources.isIndirect())
|
|
|
|
{
|
|
|
|
QTC::TC("qpdf", "QPDFPageDocumentHelper indirect as resources");
|
|
|
|
as.getDict().replaceKey(
|
|
|
|
"/Resources", as_resources.shallowCopy());
|
|
|
|
as_resources = as.getDict().getKey("/Resources");
|
|
|
|
}
|
|
|
|
as_resources.mergeResources(
|
|
|
|
ff.getInheritableFieldValue("/DR"));
|
2019-01-01 04:08:57 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QTC::TC("qpdf", "QPDFPageDocumentHelper non-widget annotation");
|
|
|
|
}
|
2019-01-25 23:15:23 +00:00
|
|
|
std::string name = resources.getUniqueResourceName(
|
|
|
|
"/Fxo", next_fx);
|
2019-01-03 16:51:58 +00:00
|
|
|
std::string content = aoh.getPageContentForAppearance(
|
|
|
|
name, rotate, required_flags, forbidden_flags);
|
|
|
|
if (! content.empty())
|
|
|
|
{
|
|
|
|
resources.mergeResources(
|
2019-01-25 23:15:23 +00:00
|
|
|
QPDFObjectHandle::parse("<< /XObject << >> >>"));
|
2019-01-03 16:51:58 +00:00
|
|
|
resources.getKey("/XObject").replaceKey(name, as);
|
|
|
|
++next_fx;
|
|
|
|
}
|
|
|
|
new_content += content;
|
2019-01-01 04:08:57 +00:00
|
|
|
}
|
2019-01-21 01:40:56 +00:00
|
|
|
else if (process)
|
|
|
|
{
|
|
|
|
// If an annotation has no appearance stream, just drop
|
|
|
|
// the annotation when flattening. This can happen for
|
|
|
|
// unchecked checkboxes and radio buttons, popup windows
|
|
|
|
// associated with comments that aren't visible, and other
|
|
|
|
// types of annotations that aren't visible.
|
|
|
|
QTC::TC("qpdf", "QPDFPageDocumentHelper ignore annotation with no appearance");
|
|
|
|
}
|
2019-01-01 04:08:57 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
new_annots.push_back(aoh.getObjectHandle());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (new_annots.size() != annots.size())
|
|
|
|
{
|
|
|
|
QPDFObjectHandle page_oh = page.getObjectHandle();
|
|
|
|
if (new_annots.empty())
|
|
|
|
{
|
|
|
|
QTC::TC("qpdf", "QPDFPageDocumentHelper remove annots");
|
|
|
|
page_oh.removeKey("/Annots");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QPDFObjectHandle old_annots = page_oh.getKey("/Annots");
|
|
|
|
QPDFObjectHandle new_annots_oh =
|
|
|
|
QPDFObjectHandle::newArray(new_annots);
|
|
|
|
if (old_annots.isIndirect())
|
|
|
|
{
|
|
|
|
QTC::TC("qpdf", "QPDFPageDocumentHelper replace indirect annots");
|
|
|
|
this->qpdf.replaceObject(
|
|
|
|
old_annots.getObjGen(), new_annots_oh);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QTC::TC("qpdf", "QPDFPageDocumentHelper replace direct annots");
|
|
|
|
page_oh.replaceKey("/Annots", new_annots_oh);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
page.addPageContents(
|
|
|
|
QPDFObjectHandle::newStream(&qpdf, "q\n"), true);
|
|
|
|
page.addPageContents(
|
|
|
|
QPDFObjectHandle::newStream(&qpdf, "\nQ\n" + new_content), false);
|
|
|
|
}
|
|
|
|
}
|