blob: 7574c0627e64e9a34985c7d88915f2f06e6d7f94 [file] [log] [blame] [edit]
// Copyright 2024 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef CORE_FPDFAPI_EDIT_CPDF_PAGEEXPORTER_H_
#define CORE_FPDFAPI_EDIT_CPDF_PAGEEXPORTER_H_
#include <stdint.h>
#include "core/fpdfapi/edit/cpdf_pageorganizer.h"
#include "core/fxcrt/span.h"
class CPDF_Document;
// Copies pages from a source document into a destination document.
// This class is intended to be used once via ExportPages() and then destroyed.
class CPDF_PageExporter final : public CPDF_PageOrganizer {
public:
CPDF_PageExporter(CPDF_Document* dest_doc, CPDF_Document* src_doc);
~CPDF_PageExporter();
// For the pages from the source document with `page_indices` as their page
// indices, insert them into the destination document at page `index`.
// `page_indices` and `index` are 0-based.
bool ExportPages(pdfium::span<const uint32_t> page_indices, int index);
};
#endif // CORE_FPDFAPI_EDIT_CPDF_PAGEEXPORTER_H_