类合并
信息
表示 Documentize.Merger 插件。用于将多个 PDF 文档合并为一个 PDF。
public sealed class Merger
继承
继承成员
- object.GetType(),
- object.ToString(),
- object.Equals(object?),
- object.Equals(object?, object?),
- object.ReferenceEquals(object?, object?),
- object.GetHashCode()
示例
示例演示如何合并两个 PDF 文档。
// 创建 Merger
var plugin = new Merger();
// 创建 MergeOptions 对象以设置指令
var opt = new MergeOptions();
// 添加输入文件路径
opt.AddInput(new FileDataSource(inputPath1));
opt.AddInput(new FileDataSource(inputPath2));
// 设置输出文件路径
opt.AddOutput(new FileDataSource(outputPath));
// 执行处理
plugin.Process(opt);
构造函数
Merger()
public Merger()
方法
Process(MergeOptions)
使用指定的参数开始 Documentize.Merger 处理。
public ResultContainer Process(MergeOptions options)
参数
options
MergeOptions: 一个包含操作指令的选项对象。
返回
ResultContainer : 一个包含操作结果的 Documentize.ResultContainer 对象。
命名空间: Documentize 程序集: Documentize.dll