From 56f1b411feeb58b55e92ee77daffaa49c51b7dad Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Tue, 17 May 2022 18:28:50 -0400 Subject: Back out fluent QPDFObjectHandle methods. Keep the andGet methods. I decided these were confusing and inconsistent with how JSON works. They muddle the API rather than improving it. --- examples/pdf-create.cc | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'examples/pdf-create.cc') diff --git a/examples/pdf-create.cc b/examples/pdf-create.cc index 493b0d3d..5e9e4239 100644 --- a/examples/pdf-create.cc +++ b/examples/pdf-create.cc @@ -181,9 +181,9 @@ add_page( " /Subtype /Image" " /BitsPerComponent 8" ">>"_qpdf; - image_dict.replaceKey("/ColorSpace", newName(color_space)) - .replaceKey("/Width", newInteger(width)) - .replaceKey("/Height", newInteger(height)); + image_dict.replaceKey("/ColorSpace", newName(color_space)); + image_dict.replaceKey("/Width", newInteger(width)); + image_dict.replaceKey("/Height", newInteger(height)); image.replaceDict(image_dict); // Provide the stream data. @@ -200,9 +200,9 @@ add_page( xobject.replaceKey("/Im1", image); QPDFObjectHandle resources = QPDFObjectHandle::newDictionary(); - resources.replaceKey("/ProcSet", procset) - .replaceKey("/Font", rfont) - .replaceKey("/XObject", xobject); + resources.replaceKey("/ProcSet", procset); + resources.replaceKey("/Font", rfont); + resources.replaceKey("/XObject", xobject); // Create the page content stream QPDFObjectHandle contents = @@ -213,7 +213,8 @@ add_page( " /Type /Page" " /MediaBox [0 0 612 392]" ">>"_qpdf); - page.replaceKey("/Contents", contents).replaceKey("/Resources", resources); + page.replaceKey("/Contents", contents); + page.replaceKey("/Resources", resources); // Add the page to the PDF file dh.addPage(page, false); -- cgit v1.2.3-54-g00ecf