Support indirect objects
This commit is contained in:
parent
8c49c53dde
commit
29a93e2cfc
|
@ -33,12 +33,18 @@ namespace uPDFParser
|
||||||
std::stringstream res;
|
std::stringstream res;
|
||||||
|
|
||||||
res << _objectId << " " << _generationNumber << " obj\n";
|
res << _objectId << " " << _generationNumber << " obj\n";
|
||||||
res << _dictionary.str();
|
if (isIndirect())
|
||||||
|
res << " " << indirectOffset << "\n";
|
||||||
std::vector<DataType*>::iterator it;
|
else
|
||||||
for(it=_data.begin(); it!=_data.end(); it++)
|
{
|
||||||
res << (*it)->str();
|
if (!_dictionary.empty())
|
||||||
|
res << _dictionary.str();
|
||||||
|
|
||||||
|
std::vector<DataType*>::iterator it;
|
||||||
|
for(it=_data.begin(); it!=_data.end(); it++)
|
||||||
|
res << (*it)->str();
|
||||||
|
}
|
||||||
|
|
||||||
res << "endobj\n";
|
res << "endobj\n";
|
||||||
|
|
||||||
return res.str();
|
return res.str();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user