Class Splitter
情報
Documentize.Splitter プラグインを表します。PDF ドキュメントを別々のページに分割するために使用されます。
public static class Splitter
継承
継承メンバー
- object.GetType(),
- object.MemberwiseClone(),
- object.ToString(),
- object.Equals(object?),
- object.Equals(object?, object?),
- object.ReferenceEquals(object?, object?),
- object.GetHashCode()
例
この例は、PDF ドキュメントを分割する方法を示します。
// Create SplitOptions object to set instructions
var options = new SplitOptions();
// Add input file path
options.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// Set output file paths
options.AddOutput(new FileDataSource("path_to_result_pdf_file_1.pdf"));
options.AddOutput(new FileDataSource("path_to_result_pdf_file_2.pdf"));
// Perform the process
Splitter.Process(options);
メソッド
Process(SplitOptions)
ページごとにPDFドキュメントを分割します。
public static ResultContainer Process(SplitOptions options)
パラメータ
options
SplitOptions: 操作のための指示を含むオプションオブジェクト。
戻り値
ResultContainer : 操作の結果を含むオブジェクト。
例外
オプションが設定されていない場合。
Namespace: Documentize Assembly: Documentize.dll