aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorm-holger <m-holger@kubitscheck.org>2022-09-26 19:27:25 +0200
committerJay Berkenbilt <jberkenbilt@users.noreply.github.com>2022-11-19 20:10:42 +0100
commit9ebabd19538512b6515696b164a17b90060a75c3 (patch)
treeb747cdbee60ce12d94b1326d3e970adc5f2abf77 /include
parent0a3c533186e3b4957fbf318e9507fe52d3f71cbd (diff)
downloadqpdf-9ebabd19538512b6515696b164a17b90060a75c3.tar.zst
Add new methods QPDF::newStream
Diffstat (limited to 'include')
-rw-r--r--include/qpdf/QPDF.hh30
1 files changed, 30 insertions, 0 deletions
diff --git a/include/qpdf/QPDF.hh b/include/qpdf/QPDF.hh
index f3160bf9..06afc44f 100644
--- a/include/qpdf/QPDF.hh
+++ b/include/qpdf/QPDF.hh
@@ -382,6 +382,36 @@ class QPDF
QPDF_DLL
std::map<QPDFObjGen, QPDFXRefEntry> getXRefTable();
+ // Public factory methods
+
+ // Create a new stream. A subsequent call must be made to
+ // replaceStreamData() to provide data for the stream. The stream's
+ // dictionary may be retrieved by calling getDict(), and the resulting
+ // dictionary may be modified. Alternatively, you can create a new
+ // dictionary and call replaceDict to install it.
+ QPDF_DLL
+ QPDFObjectHandle newStream();
+
+ // Create a new stream. Use the given buffer as the stream data. The
+ // stream dictionary's /Length key will automatically be set to the size of
+ // the data buffer. If additional keys are required, the stream's
+ // dictionary may be retrieved by calling getDict(), and the resulting
+ // dictionary may be modified. This method is just a convenient wrapper
+ // around the newStream() and replaceStreamData(). It is a convenience
+ // methods for streams that require no parameters beyond the stream length.
+ // Note that you don't have to deal with compression yourself if you use
+ // QPDFWriter. By default, QPDFWriter will automatically compress
+ // uncompressed stream data. Example programs are provided that
+ // illustrate this.
+ QPDF_DLL
+ QPDFObjectHandle newStream(std::shared_ptr<Buffer> data);
+
+ // Create new stream with data from string. This method will
+ // create a copy of the data rather than using the user-provided
+ // buffer as in the std::shared_ptr<Buffer> version of newStream.
+ QPDF_DLL
+ QPDFObjectHandle newStream(std::string const& data);
+
// Install this object handle as an indirect object and return an
// indirect reference to it.
QPDF_DLL