> ## 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.

# FRPage Object の SynthesizeBusinessCardEx メソッド

> ABBYY FineReader Engine API の FRPage Object における SynthesizeBusinessCardEx メソッド。合成パラメーターを使用して指定した認識済み領域から名刺のfieldを検出し、BusinessCard オブジェクトを返します。領域には認識済みブロックが含まれている必要があります。

このメソッドは、合成パラメーターを使用して、指定した認識済み領域から名刺のfieldを検出します。このメソッドは [BusinessCard](/ja/fine-reader/engine/api-reference/document-related-objects/businesscard) オブジェクトを返します。

<Warning>
  指定する領域には、認識済みのブロックが含まれている必要があります。したがって、このメソッドを呼び出す前に、解析または認識のメソッドのいずれかを呼び出しておく必要があります。
</Warning>

<div id="syntax">
  ## 構文
</div>

<div id="c">
  ### C++
</div>

```cpp theme={null}
HRESULT SynthesizeBusinessCardEx(
  IRegion*                      Region,
  IBusinessCardSynthesisParams* Params,
  IBusinessCard**               Result
);
```

### C\#

```csharp theme={null}
IBusinessCard SynthesizeBusinessCardEx( 
  IRegion                       Region, 
  IBusinessCardSynthesisParams  Params
);
```

<div id="visual-basic-net">
  ### Visual Basic .NET
</div>

```vb theme={null}
Function SynthesizeBusinessCardEx(_
  Region As IRegion, _
  [Params As IBusinessCardSynthesisParams = Nothing] _
) As IBusinessCard
```

<div id="parameters">
  ## パラメーター
</div>

Region

\[in] 名刺として解釈する画像上の領域を指定する [Region](/ja/fine-reader/engine/api-reference/supplementary-objects-and-methods/region) オブジェクトを参照します。[ImageDocument](/ja/fine-reader/engine/api-reference/image-related-objects/imagedocument) の傾き補正済み白黒プレーンの座標で設定する必要があります。このパラメーターには 0 を指定することもでき、その場合は画像全体が処理されます。

Params

\[in] 名刺の合成パラメーターを格納する [BusinessCardSynthesisParams](/ja/fine-reader/engine/api-reference/parameter-objects/preprocessing-analysis-recognition-and-synthesis-parameters/businesscardsynthesisparams) オブジェクトです。このパラメーターには 0 を指定することもできます。この場合、名刺は既定のパラメーターで合成されます。[プロファイル](/ja/fine-reader/engine/guided-tour/advanced-techniques/working-with-profiles) がロードされている場合は、そのプロファイルで設定されたパラメーターが使用されます。

<Warning>
  [RecognizerParams](/ja/fine-reader/engine/api-reference/parameter-objects/preprocessing-analysis-recognition-and-synthesis-parameters/recognizerparams) オブジェクトの [SetPredefinedTextLanguage](/ja/fine-reader/engine/api-reference/parameter-objects/preprocessing-analysis-recognition-and-synthesis-parameters/recognizerparams/setpredefinedtextlanguage-method) メソッドによる場合を除き、認識言語を作成する際は、このパラメーターを指定する必要があります。
</Warning>

Result

\[out, retval] 出力 [BusinessCard](/ja/fine-reader/engine/api-reference/document-related-objects/businesscard) オブジェクトのインターフェイス ポインターを受け取る IBusinessCard\* ポインター変数へのポインターです。このオブジェクトを使用して、合成された名刺にアクセスできます。名刺が合成されなかった場合、このメソッドの呼び出し後、Result\* は NULL になることがあります。

<div id="return-values">
  ## 戻り値
</div>

このメソッドには特定の戻り値はありません。代わりに、[ABBYY FineReader Engine 関数の標準戻り値](/ja/fine-reader/engine/api-reference/return-codes)が返されます。

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

[FRPage](/ja/fine-reader/engine/api-reference/document-related-objects/frpage)

[名刺認識](/ja/fine-reader/engine/guided-tour/basic-usage-scenarios-implementation/business-card-recognition)

[プロファイルの操作](/ja/fine-reader/engine/guided-tour/advanced-techniques/working-with-profiles)
