> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Document変換

> ABBYY FineReader Engine を使用して、元のレイアウト、フォント、テーブル、Document構造を保持したまま、Document画像を編集可能な形式（RTF、DOCX、ODT）に変換します。

このシナリオの結果として、編集可能なDocumentが得られます。

このシナリオでは、Document画像を元の書式を保ったまま認識し、データを編集可能なファイル形式で保存します。その結果、Documentの編集可能なバージョンを取得でき、誤りの確認や修正を簡単に行えます。また、テキストの全部または一部をコピーして再利用することもできます。

Documentはいくつかの処理ステップを経ますが、その一部は他の一般的なシナリオとはやや異なります。

1. スキャン画像または写真の前処理

   スキャナーやデジタルカメラで取得した画像は、光学認識を行う前に多少の調整が必要になる場合があります。たとえば、ノイズの多い画像やテキスト行がゆがんだ画像では、光学認識を正しく行うために補正が必要になります。

2. Document構造と書式を完全に復元する認識

   Documentを認識する際には、Documentのさまざまなレイアウト要素 (テキスト、表、画像、区切り線など) が識別されます。Document合成の過程ではDocumentの論理構造が復元され、ページ合成によってDocumentの書式 (フォント、スタイルなど) も完全に復元されます。

3. 編集可能な形式へのエクスポート

   認識されたDocumentは、RTF や DOCX などの編集可能な形式で保存されます。

<div id="scenario-implementation">
  ## シナリオの実装
</div>

<Note>
  このトピックで提供するコードサンプルは、Windows 専用です。
</Note>

以下では、ABBYY FineReader Engine 12 を使用してDocumentを変換するための推奨手順について詳しく説明します。ここで提案する方法では、この用途に最適な処理設定を使用します。

<Accordion title="ステップ 1. ABBYY FineReader Engine の読み込み">
  ABBYY FineReader Engine を使用するには、まず [Engine](/ja/fine-reader/engine/api-reference/engine-object-iengine-interface) オブジェクトを作成する必要があります。Engine オブジェクトは ABBYY FineReader Engine のオブジェクト階層における最上位のオブジェクトであり、さまざまなグローバル設定、一部の処理メソッド、およびその他のオブジェクトを作成するためのメソッドを提供します。

  Engineオブジェクトを作成するには、[InitializeEngine](/ja/fine-reader/engine/api-reference/functions/initializeengine-function)関数を使用します。[Engineオブジェクトを読み込むその他の方法](/ja/fine-reader/engine/guided-tour/advanced-techniques/programming-aspects/different-ways-to-load-engine) (Win) も参照してください。

  ### C\#

  ```csharp theme={null}
  public class EngineLoader : IDisposable
  {
      public EngineLoader()
      {
          // FREngine.dll へのフルパス、Customer Project ID、
          // および該当する場合はオンライン ライセンス トークンファイルへのパスとオンライン ライセンス パスワードを使用して、これらの変数を初期化します
          string enginePath = "";
          string customerProjectId = "";
          string licensePath = "";
          string licensePassword = "";
          // FREngine.dll ライブラリを読み込む
          dllHandle = LoadLibraryEx(enginePath, IntPtr.Zero, LOAD_WITH_ALTERED_SEARCH_PATH);
             
          try
          {
              if (dllHandle == IntPtr.Zero)
              {
                  throw new Exception("読み込めません: " + enginePath);
              }
              IntPtr initializeEnginePtr = GetProcAddress(dllHandle, "InitializeEngine");
              if (initializeEnginePtr == IntPtr.Zero)
              {
                  throw new Exception("InitializeEngine 関数が見つかりません");
              }
              IntPtr deinitializeEnginePtr = GetProcAddress(dllHandle, "DeinitializeEngine");
              if (deinitializeEnginePtr == IntPtr.Zero)
              {
                  throw new Exception("DeinitializeEngine 関数が見つかりません");
              }
              IntPtr dllCanUnloadNowPtr = GetProcAddress(dllHandle, "DllCanUnloadNow");
              if (dllCanUnloadNowPtr == IntPtr.Zero)
              {
                  throw new Exception("DllCanUnloadNow 関数が見つかりません");
              }
              // ポインターをデリゲートに変換する
              initializeEngine = (InitializeEngine)Marshal.GetDelegateForFunctionPointer(
                  initializeEnginePtr, typeof(InitializeEngine));
              deinitializeEngine = (DeinitializeEngine)Marshal.GetDelegateForFunctionPointer(
                  deinitializeEnginePtr, typeof(DeinitializeEngine));
              dllCanUnloadNow = (DllCanUnloadNow)Marshal.GetDelegateForFunctionPointer(
                  dllCanUnloadNowPtr, typeof(DllCanUnloadNow));
              // InitializeEngine 関数を呼び出す
              // オンライン ライセンス ファイルへのパスとオンライン ライセンス パスワードを渡す
              int hresult = initializeEngine(customerProjectId, licensePath, licensePassword, 
                  "", "", false, ref engine);
              Marshal.ThrowExceptionForHR(hresult);
          }
          catch (Exception)
          {
              // FREngine.dll ライブラリを解放する
              engine = null;
              // FreeLibrary 呼び出し前にすべてのオブジェクトを削除する
              GC.Collect();
              GC.WaitForPendingFinalizers();
              GC.Collect();
              FreeLibrary(dllHandle);
              dllHandle = IntPtr.Zero;
              initializeEngine = null;
              deinitializeEngine = null;
              dllCanUnloadNow = null;
              throw;
          }
      }
      // Kernel32.dll 関数
      [DllImport("kernel32.dll")]
      private static extern IntPtr LoadLibraryEx(string dllToLoad, IntPtr reserved, uint flags);
      private const uint LOAD_WITH_ALTERED_SEARCH_PATH = 0x00000008;
      [DllImport("kernel32.dll")]
      private static extern IntPtr GetProcAddress(IntPtr hModule, string procedureName);
      [DllImport("kernel32.dll")]
      private static extern bool FreeLibrary(IntPtr hModule);
      // FREngine.dll 関数
      [UnmanagedFunctionPointer(CallingConvention.StdCall, CharSet = CharSet.Unicode)]
      private delegate int InitializeEngine(string customerProjectId, string licensePath, 
          string licensePassword, string tempFolder, string dataFolder, bool isSharedCPUCoresMode, 
          ref FREngine.IEngine engine);
      [UnmanagedFunctionPointer(CallingConvention.StdCall)]
      private delegate int DeinitializeEngine();
      [UnmanagedFunctionPointer(CallingConvention.StdCall)]
      private delegate int DllCanUnloadNow();
      // プライベート変数
      private FREngine.IEngine engine = null;
      // FREngine.dll へのハンドル
      private IntPtr dllHandle = IntPtr.Zero;
      private InitializeEngine initializeEngine = null;
      private DeinitializeEngine deinitializeEngine = null;
      private DllCanUnloadNow dllCanUnloadNow = null;
  }
  ```

  ### C++ (COM)

  ```cpp theme={null}
  // これらの変数を FREngine.dll へのパス、FineReader Engine の Customer Project ID、
  // および該当する場合はオンライン ライセンス トークンとオンライン ライセンス パスワードへのパスで初期化してください
  wchar_t* FreDllPath;
  wchar_t* CustomerProjectId;
  wchar_t* LicensePath;  // オンライン ライセンスを使用しない場合は、これらの変数に空の文字列を割り当ててください
  wchar_t* LicensePassword;
  // FREngine.dll のハンドル
  static HMODULE libraryHandle = 0;
  // グローバル FineReader Engine オブジェクト
  FREngine::IEnginePtr Engine;
  void LoadFREngine()
  {
      if( Engine != 0 ) {
      // 読み込み済み
      return;
      }
      // ステップ 1: FREngine.dll を読み込む
      if( libraryHandle == 0 ) {
          libraryHandle = LoadLibraryEx( FreDllPath, 0, LOAD_WITH_ALTERED_SEARCH_PATH );
          if( libraryHandle == 0 ) {
              throw L"ABBYY FineReader Engine の読み込み中にエラーが発生しました";
          }
      }
      // ステップ 2: Engine オブジェクトを取得する
      typedef HRESULT ( STDAPICALLTYPE* InitializeEngineFunc )( BSTR, BSTR, BSTR, BSTR, 
          BSTR, VARIANT_BOOL, FREngine::IEngine** );
      InitializeEngineFunc pInitializeEngine =
      ( InitializeEngineFunc )GetProcAddress( libraryHandle, "InitializeEngine" );
      if( pInitializeEngine == 0 || pInitializeEngine( CustomerProjectId, LicensePath, 
          LicensePassword, L"", L"", VARIANT_FALSE, &Engine ) != S_OK ) {
      UnloadFREngine();
      throw L"ABBYY FineReader Engine の読み込み中にエラーが発生しました";
      }
  }
  ```
</Accordion>

<Accordion title="ステップ 2. シナリオ用の設定を読み込む">
  ABBYY FineReader Engine では、このシナリオに最適なすべての処理設定を、[Engine](/ja/fine-reader/engine/api-reference/engine-object-iengine-interface) オブジェクトの [LoadPredefinedProfile](/ja/fine-reader/engine/api-reference/engine-object-iengine-interface/supplementary-methods/loadpredefinedprofile-method) メソッドを使って読み込めます。このメソッドは、入力パラメーターとしてプロファイル名を受け取ります。詳しくは、[プロファイルの操作](/ja/fine-reader/engine/guided-tour/advanced-techniques/working-with-profiles) を参照してください。

  ABBYY FineReader Engine では、このシナリオ向けに 2 種類の設定が用意されています。

  <table><thead><tr><th><p><strong>プロファイル名</strong></p></th><th><p><strong>説明</strong></p></th></tr></thead><tbody><tr><td><p><em>DocumentConversion\_Accuracy</em></p></td><td><p>この設定は精度重視で最適化されています:</p><ul><li>最高品質。フォントスタイルの検出と、Documentの論理構造の完全な合成を有効にします。</li></ul></td></tr><tr><td><p><em>DocumentConversion\_Normal</em></p></td><td><p>この設定は処理速度重視で最適化されています:</p><ul><li>最高品質。フォントスタイルの検出と、Documentの論理構造の完全な合成を有効にします。</li><li>画像の向きは補正されません。</li><li>Document解析処理が高速化されます。</li></ul></td></tr></tbody></table>

  ### C\#

  ```csharp theme={null}
  // 定義済みプロファイルを読み込む
  engine.LoadPredefinedProfile("DocumentConversion_Normal");
  ```

  ### C++ (COM)

  ```cpp theme={null}
  // 定義済みプロファイルを読み込む
  Engine->LoadPredefinedProfile( L"DocumentConversion_Normal" );
  ```

  処理設定を変更する場合は、適切な Parameter オブジェクトを使用してください。詳しくは、以下の [特定のタスク向けの追加最適化](/ja/fine-reader/engine/guided-tour/basic-usage-scenarios-implementation/document-conversion#optimization) を参照してください。
</Accordion>

<Accordion title="ステップ 3. 画像の読み込みと前処理">
  ABBYY FineReader Engine には、複数ページのDocumentを処理できる [FRDocument](/ja/fine-reader/engine/api-reference/document-related-objects/frdocument) オブジェクトが用意されています。このオブジェクトを使用すると、元のテキスト、段組み、フォント、スタイルなどを保持したまま、Documentの論理構造を維持できます。

  1 つのDocumentの画像を読み込んで前処理するには、FRDocument オブジェクトを作成し、そこに画像を追加する必要があります。方法は次のいずれかです。

  * Engine オブジェクトの [CreateFRDocumentFromImage](/ja/fine-reader/engine/api-reference/engine-object-iengine-interface/creation-methods/createfrdocumentfromimage-method) メソッドを使用して FRDocument オブジェクトを作成します。このメソッドは FRDocument オブジェクトを作成し、指定したファイルから画像を読み込みます。
  * Engine オブジェクトの [CreateFRDocument](/ja/fine-reader/engine/api-reference/engine-object-iengine-interface/creation-methods/createlessobjectgreater-methods) メソッドを使用して FRDocument オブジェクトを作成し、その後、作成した FRDocument オブジェクトにファイルから画像を追加します (FRDocument オブジェクトの [AddImageFile](/ja/fine-reader/engine/api-reference/document-related-objects/frdocument/addimagefile-method)、[AddImageFileWithPassword](/ja/fine-reader/engine/api-reference/document-related-objects/frdocument/addimagefilewithpassword-method)、または [AddImageFileWithPasswordCallback](/ja/fine-reader/engine/api-reference/document-related-objects/frdocument/addimagefilewithpasswordcallback-method) メソッドを使用します) 。

  ### C\#

  ```csharp theme={null}
  // 画像ファイルから FRDocument オブジェクトを作成する
  FREngine.IFRDocument frDocument = engine.CreateFRDocumentFromImage( "C:\\MyImage.tif", null );
  ```

  ### C++ (COM)

  ```cpp theme={null}
  // 画像ファイルから FRDocument オブジェクトを作成する
  FREngine::IFRDocumentPtr frDocument = Engine->CreateFRDocumentFromImage( L"C:\\MyImage.tif", 0 );
  ```

  <Note>
    読み込んだ DocumentConversion\_Normal プロファイルによる画像の前処理には、向きの検出は含まれていません。画像の向きを自動的に検出する場合は、追加のパラメーターを設定し、対応するオブジェクトを前処理関数に渡す必要があります。詳しくは、以下の [特定のタスク向けの追加最適化](/ja/fine-reader/engine/guided-tour/basic-usage-scenarios-implementation/document-conversion#optimization) を参照してください。
  </Note>
</Accordion>

<Accordion title="ステップ 4. Document認識">
  Documentを認識するには、FRDocument オブジェクトの解析メソッドと認識メソッドを使用することをお勧めします。このオブジェクトには、Documentの解析、認識、合成を行うためのさまざまなメソッドが用意されています。Documentの解析、認識、合成を 1 回で実行できる最も便利なメソッドは、[Process](/ja/fine-reader/engine/api-reference/document-related-objects/frdocument/process-method) メソッドです。このメソッドは、マルチプロセッサおよびマルチコアシステムの並列処理機能も最も効率的に活用します。一方、[Preprocess](/ja/fine-reader/engine/api-reference/document-related-objects/frdocument/preprocess-method)、[Analyze](/ja/fine-reader/engine/api-reference/document-related-objects/frdocument/analyze-method)、[Recognize](/ja/fine-reader/engine/api-reference/document-related-objects/frdocument/recognize-method)、および [Synthesize](/ja/fine-reader/engine/api-reference/document-related-objects/frdocument/synthesize-method) の各メソッドを使用して、前処理、解析、認識、合成を順に実行することもできます。

  ### C\#

  ```csharp theme={null}
  // ドキュメントを分析、認識、合成します
  // 追加のパラメーターは処理プロファイルで設定されるため不要です
  frDocument.Process( null );
  ```

  ### C++ (COM)

  ```cpp theme={null}
  // ドキュメントを分析、認識、合成します
  // 追加のパラメーターは処理プロファイルで設定されるため不要です
  frDocument->Process( 0 );
  ```
</Accordion>

<Accordion title="ステップ 5. Documentのエクスポート">
  認識したDocumentを保存するには、[FRDocument](/ja/fine-reader/engine/api-reference/document-related-objects/frdocument) オブジェクトの [Export](/ja/fine-reader/engine/api-reference/document-related-objects/frdocument/export-method) メソッドを使用し、パラメーターの 1 つとして [FileExportFormatEnum](/ja/fine-reader/engine/api-reference/enumerations/fileexportformatenum) 定数を指定します。対応するエクスポート オブジェクトを使用すると、エクスポートの既定のパラメーターを変更できます。詳しくは、以下の [特定のタスク向けの追加最適化](/ja/fine-reader/engine/guided-tour/basic-usage-scenarios-implementation/document-conversion#optimization) を参照してください。

  FRDocument オブジェクトの使用が完了したら、このオブジェクトが使用していたすべてのリソースを解放してください。[IFRDocument::Close](/ja/fine-reader/engine/api-reference/document-related-objects/frdocument/close-method) メソッドを使用します。

  ### C\#

  ```csharp theme={null}
  // 認識したドキュメントを編集可能な形式（たとえば RTF）で保存します
  frDocument.Export( "C:\\MyText.rtf", FREngine.FileExportFormatEnum.FEF_RTF, null );
  // FRDocument オブジェクトを解放します
  frDocument.Close();
  ```

  ### C++ (COM)

  ```cpp theme={null}
  // 認識したドキュメントを編集可能な形式（たとえば RTF）で保存します
  frDocument->Export( L"C:\\MyText.rtf", FREngine::FEF_RTF, 0 );
  // FRDocument オブジェクトを解放します
  frDocument->Close();
  ```
</Accordion>

<Accordion title="ステップ 6. ABBYY FineReader Engine のアンロード">
  ABBYY FineReader Engine での作業が完了したら、[Engine](/ja/fine-reader/engine/api-reference/engine-object-iengine-interface) オブジェクトをアンロードする必要があります。そのためには、エクスポート関数 [DeinitializeEngine](/ja/fine-reader/engine/api-reference/functions/deinitializeengine-function) を使用します。

  ### C\#

  ```csharp theme={null}
  public class EngineLoader : IDisposable
  {
      // FineReader Engine をアンロードする
      public void Dispose()
      {
          if (engine == null)
          {
              // Engine はロードされていない
              return;
          }
          engine = null;
          // FreeLibrary を呼び出す前にすべてのオブジェクトを削除する
          GC.Collect();
          GC.WaitForPendingFinalizers();
          GC.Collect();
          int hresult = deinitializeEngine();
   
          hresult = dllCanUnloadNow();
          if (hresult == 0)
          {
              FreeLibrary(dllHandle);
          }
          dllHandle = IntPtr.Zero;
          initializeEngine = null;
          deinitializeEngine = null;
          dllCanUnloadNow = null;
          // クリーンアップ後に例外をスローする
          Marshal.ThrowExceptionForHR(hresult);
      }
      // Kernel32.dll の関数
      [DllImport("kernel32.dll")]
      private static extern IntPtr LoadLibraryEx(string dllToLoad, IntPtr reserved, uint flags);
      private const uint LOAD_WITH_ALTERED_SEARCH_PATH = 0x00000008;
      [DllImport("kernel32.dll")]
      private static extern IntPtr GetProcAddress(IntPtr hModule, string procedureName);
      [DllImport("kernel32.dll")]
      private static extern bool FreeLibrary(IntPtr hModule);
      // FREngine.dll の関数
      [UnmanagedFunctionPointer(CallingConvention.StdCall, CharSet = CharSet.Unicode)]
      private delegate int InitializeEngine( string customerProjectId, string LicensePath, string LicensePassword, , , , ref FREngine.IEngine engine);
      [UnmanagedFunctionPointer(CallingConvention.StdCall)]
      private delegate int DeinitializeEngine();
      [UnmanagedFunctionPointer(CallingConvention.StdCall)]
      private delegate int DllCanUnloadNow();
      // プライベート変数
      private FREngine.IEngine engine = null;
      // FREngine.dll へのハンドル
      private IntPtr dllHandle = IntPtr.Zero;
      private InitializeEngine initializeEngine = null;
      private DeinitializeEngine deinitializeEngine = null;
      private DllCanUnloadNow dllCanUnloadNow = null;
  }
  ```

  ### C++ (COM)

  ```cpp theme={null}
  void UnloadFREngine()
  {
   if( libraryHandle == 0 ) {
    return;
   }
   // Engine オブジェクトを解放する
   Engine = 0;
   // FineReader Engine を終了する
   typedef HRESULT ( STDAPICALLTYPE* DeinitializeEngineFunc )();
   DeinitializeEngineFunc pDeinitializeEngine =
    ( DeinitializeEngineFunc )GetProcAddress( libraryHandle, "DeinitializeEngine" );
   if( pDeinitializeEngine == 0 || pDeinitializeEngine() != S_OK ) {
    throw L"Error while unloading ABBYY FineReader Engine";
   }
   // これで FREngine.dll ライブラリを安全に解放できる
   FreeLibrary( libraryHandle );
   libraryHandle = 0;
  }
  ```
</Accordion>

<div id="required-resources">
  ## 必要なリソース
</div>

[FREngineDistribution.csv](/ja/fine-reader/engine/distribution/distribution-windows/distribution-kit/working-with-the-frenginedistributioncsv-file) ファイルを使用すると、アプリケーションの動作に必要なファイルのリストを自動的に作成できます。このシナリオで処理するには、列 5 (RequiredByModule) で次の値を選択します。

Core

Core.Resources

Opening

Opening, Processing

Processing

Processing.OCR

Processing.OCR, Processing.ICR

Processing.OCR.NaturalLanguages

Processing.OCR.NaturalLanguages, Processing.ICR.NaturalLanguages

Export

Export, Processing

標準シナリオを変更する場合は、それに応じて必要なモジュールも変更してください。また、インターフェイス言語、認識言語、およびアプリケーションで使用する追加機能も指定する必要があります (たとえば、PDF ファイルを開く必要がある場合は Opening.PDF、[CJK languages](/ja/fine-reader/engine/guided-tour/advanced-techniques/recognizing-cjk-languages#cjk) のテキストを認識する必要がある場合は Processing.OCR.CJK を指定します) 。詳細については、[Working with the FREngineDistribution.csv File](/ja/fine-reader/engine/distribution/distribution-windows/distribution-kit/working-with-the-frenginedistributioncsv-file) を参照してください。

<div id="additional-optimization-for-specific-tasks">
  ## 特定のタスク向けの追加の最適化
</div>

以下は、Documentを編集可能な形式に変換する各段階での設定のカスタマイズに関する追加情報を含むヘルプトピックの概要です。

* スキャン - Windows のみ
  * [スキャン](/ja/fine-reader/engine/guided-tour/basic-usage-scenarios-implementation/scanning)<br />Documentをスキャンするための ABBYY FineReader Engine のシナリオの説明です。
* 認識
  * [前処理、解析、認識、および合成のパラメーターの調整](/ja/fine-reader/engine/guided-tour/advanced-techniques/tuning-parameters-of-preprocessing-analysis-recognition-and-synthesis)<br />解析、認識、および合成のパラメーターオブジェクトを使用してDocument処理をカスタマイズします。
  * [手書き文字を認識する](/ja/fine-reader/engine/guided-tour/advanced-techniques/recognizing-handwritten-texts)<br />DocumentConversion\_\*\*\* プロファイルには、手書き文字や手書きの活字体の認識は含まれていません。手書き文字を認識する必要がある場合は、[PageAnalysisParams](/ja/fine-reader/engine/api-reference/parameter-objects/preprocessing-analysis-recognition-and-synthesis-parameters/pageanalysisparams) オブジェクトの [DetectHandwritten](/ja/fine-reader/engine/api-reference/parameter-objects/preprocessing-analysis-recognition-and-synthesis-parameters/pageanalysisparams#detecthandwritten) プロパティを TRUE に設定します。
  * [PageProcessingParams Object](/ja/fine-reader/engine/api-reference/parameter-objects/preprocessing-analysis-recognition-and-synthesis-parameters/pageprocessingparams)<br />このオブジェクトでは、解析および認識のパラメーターをカスタマイズできます。このオブジェクトを使用すると、検出する画像およびテキストの特性 (反転画像、向き、バーコード、認識言語、認識エラーの許容範囲) を指定できます。
  * [SynthesisParamsForPage Object](/ja/fine-reader/engine/api-reference/parameter-objects/preprocessing-analysis-recognition-and-synthesis-parameters/synthesisparamsforpage)<br />このオブジェクトには、合成時にページの書式を復元するためのパラメーターが含まれています。
  * [SynthesisParamsForDocument Object](/ja/fine-reader/engine/api-reference/parameter-objects/preprocessing-analysis-recognition-and-synthesis-parameters/synthesisparamsfordocument)<br />このオブジェクトでは、Document合成 (構造および書式の復元) をカスタマイズできます。
  * [MultiProcessingParams Object](/ja/fine-reader/engine/api-reference/parameter-objects/multiprocessingparams) - *Linux および Windows で実装* <br />大量の画像を処理する場合、同時処理が役立つことがあります。この場合、画像のオープンと前処理、レイアウト解析、認識、エクスポートの各処理で負荷がプロセッサ コアに分散されるため、処理を高速化できます。<br />読み取りモード (同時または逐次) は、MultiProcessingMode プロパティを使用して設定します。RecognitionProcessesCount プロパティは、起動できるプロセス数を制御します。
* エクスポート
  * [エクスポート パラメーターの調整](/ja/fine-reader/engine/guided-tour/advanced-techniques/tuning-export-parameters)<br />エクスポート パラメーター オブジェクトを使用してDocumentのエクスポートをカスタマイズします。
  * [RTFExportParams Object](/ja/fine-reader/engine/api-reference/parameter-objects/export-parameters/rtfexportparams)<br />このオブジェクトでは、RTF/DOCX/ODT 保存形式のパラメーターをカスタマイズできます。
  * [HTMLExportParams Object](/ja/fine-reader/engine/api-reference/parameter-objects/export-parameters/htmlexportparams)<br />このオブジェクトでは、HTML 形式へのエクスポートをカスタマイズできます。
  * [PPTExportParams Object](/ja/fine-reader/engine/api-reference/parameter-objects/export-parameters/pptexportparams)<br />PPTX 保存形式のパラメーターをカスタマイズするためのオブジェクト。

<div id="see-also">
  ## 関連項目
</div>

[基本的な利用シナリオの実装](/ja/fine-reader/engine/guided-tour/basic-usage-scenarios-implementation)
