v24.12

新しいプラグインを追加: PDFからPNGコンバータ

  • クラス PngConverter: Documentize.PngConverterプラグインを表します。PDF文書をPNG形式に変換するために使用します。
  • クラス PdfToPngOptions: Documentize.PngConverterプラグインのPDFからPNGコンバータのオプションを表します。

使用例:

// PngConverterを作成
var plugin = new PngConverter();
// 指示を設定するためのPdfToPngOptionsオブジェクトを作成
var opt = new PdfToPngOptions();
// 入力ファイルパスを追加
opt.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// 出力ファイルパスを設定
opt.AddOutput(new DirectoryDataSource("path_to_results_directory"));
// 処理を実行
plugin.Process(opt);

新しいプラグインを追加: PDFからTIFFコンバータ

  • クラス TiffConverter: Documentize.TiffConverterプラグインを表します。PDF文書をTIFF形式に変換するために使用します。
  • クラス PdfToTiffOptions: Documentize.TiffConverterプラグインのPDFからTIFFコンバータのオプションを表します。

使用例:

// TiffConverterを作成
var plugin = new TiffConverter();
// 指示を設定するためのPdfToTiffOptionsオブジェクトを作成
var opt = new PdfToTiffOptions();
// 入力ファイルパスを追加
opt.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// 出力ファイルパスを設定
opt.AddOutput(new DirectoryDataSource("path_to_results_directory"));
// 処理を実行
plugin.Process(opt);

新しいプラグインを追加: PDFテーブルジェネレーター

  • クラス TableGenerator: Documentize.TableGeneratorプラグインを表します。PDF文書にテーブルを追加するために使用します。
  • クラス TableBuilder: PDFページのテーブルのビルダーを表すクラスです。
  • クラス TableRowBuilder: テーブル行のビルダーを表すクラスです。
  • クラス TableCellBuilder: テーブルセルのビルダーを表すクラスです。

使用例:

// TableGeneratorを作成
var plugin = new TableGenerator();
// 指示を設定するためのTableOptionsオブジェクトを作成
TableOptions opt = new TableOptions().InsertPageBefore(1)
   .AddTable()
        .AddRow()
            .AddCell().AddParagraph("名前")
            .AddCell().AddParagraph("年齢")
        .AddRow()
            .AddCell().AddParagraph("ボブ")
            .AddCell().AddParagraph("12")
        .AddRow()
            .AddCell().AddParagraph("サム")
            .AddCell().AddParagraph("20")
        .AddRow()
            .AddCell().AddParagraph("サンディ")
            .AddCell().AddParagraph("26")
        .AddRow()
            .AddCell().AddParagraph("トム")
            .AddCell().AddParagraph("12")
        .AddRow()
            .AddCell().AddParagraph("ジム")
            .AddCell().AddParagraph("27");
// 入力ファイルパスを追加
opt.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// 出力ファイルパスを設定
opt.AddOutput(new FileDataSource("path_to_the_converted_file.pdf"));
// 処理を実行
plugin.Process(opt);

クラス PdfDocをDocConverterに名前変更

  • クラス DocConverter: Documentize.DocConverterプラグインを表します。PDF文書をDOC/DOCX形式に変換するために使用します。

使用例:

// DocConverterを作成
var plugin = new DocConverter();
// 指示を設定するためのPdfToDocOptionsオブジェクトを作成
var opt = new PdfToDocOptions();
// 入力ファイルパスを追加
opt.AddInput(new FileDataSource(inputPath));
// 出力ファイルパスを設定
opt.AddOutput(new FileDataSource(outputPath));
// 処理を実行
plugin.Process(opt);
 日本語