Class Merger
Class Merger
名称: Aspose.Pdf.Plugins 合計: Aspose.PDF.dll (25.4.0)
Aspose.Pdf.Plugins.Merger プラグインを表示します。
public sealed class Merger : IPlugin
Inheritance
Implements
相続人
object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
この例では、2つのPDF文書を組み合わせる方法を示しています。
// create Merger
var merger = new Merger();
// create MergeOptions object to set instructions
var opt = new MergeOptions();
// add input file paths
opt.AddInput(new FileDataSource(inputPath1));
opt.AddInput(new FileDataSource(inputPath2));
// set output file path
opt.AddOutput(new FileDataSource(outputPath));
// perform the process
merger.Process(opt);
Constructors
Merger()
public Merger()
Methods
Process(IPluginオプション)
指定されたパラメーターで Aspose.Pdf.Plugins.Merger 処理を開始します。
public ResultContainer Process(IPluginOptions options)
Parameters
options
IPluginOptions
Aspose.Pdf.Plugins.Merger の指示を含むオプションオブジェクト。
Returns
ResultContainer オブジェクトは、作業の結果を含みます。