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

# 画像処理パラメータ

> ロード時に画像を自動補正します。Deskew、Despeckle、白黒変換、プロファイルの適用などに対応しています。

Scanning Station では、画像のロード時に自動的に、またはインポート後に手動で画像を処理し、画質を改善したり編集しやすくしたりできます。

これらのパラメータは、次の 2 か所で設定します。

* **バッチタイプの場合** — [Batch Type Properties](/ja/vantage/documentation/scanning-station/interface/batch-type-properties-dbox) ダイアログの **Image Processing** タブ。
* **個別のバッチの場合** — [Options](/ja/vantage/documentation/scanning-station/interface/options-dialog-box) ダイアログの **Image Processing** タブ。

<Note>
  自動画像処理を有効にすると、画像のロードが大幅に遅くなることがあります。
</Note>

<div id="available-options">
  ## 利用可能なオプション
</div>

* **Despeckle** — 中品質または低品質の文書のスキャン時に生じる小さな斑点を除去します。
* **Convert full-color and grayscale images to black-and-white** — 画像を白黒に変換します。
* **Rotate images by** — 画像を90°時計回り、90°反時計回り、または180°回転します。
* **Deskew** — 区切り線、黒い四角、またはその両方を使用して、[画像の傾き](/ja/vantage/documentation/scanning-station/operator/editing-images)を自動的に補正します。
* **Use Image Enhancement Profile** — あらかじめ設定された[処理プロファイル](/ja/vantage/documentation/scanning-station/operator/processing-profiles)を入力画像に適用します。

<div id="restore-the-original-image">
  ## 元の画像を復元する
</div>

自動または手動で処理した結果に満足できない場合は、ページを右クリックして **元の画像に戻す** を選択すると、再スキャンしなくても元に戻せます。このオプションは、画像が変更されている場合にのみ表示されます。

<div id="use-scripts-to-process-images">
  ## スクリプトを使用して画像を処理する
</div>

画像はプログラムで処理できます。たとえば、最初に選択したページを水平方向に反転するには、

```
IWorkspaceItem page = Workspace.Selection[0];
page.FlipHorizontal();
```

処理済みのコピーではなく元の画像を保存するには、`ColorType`、`Format`、および `UseRawImage = true` を指定して [IImageSavingOptions](/ja/vantage/documentation/scanning-station/admin/i-image-saving-options) インスタンスを設定し、次を呼び出します:

```
IWorkspaceItem.SaveAs(fileName: string, [optional] options: IImageSavingOptions)
```

<div id="related-topics">
  ## 関連トピック
</div>

* [処理プロファイル](/ja/vantage/documentation/scanning-station/operator/processing-profiles)
* [画像の編集](/ja/vantage/documentation/scanning-station/operator/editing-images)
* [1 回限りの編集操作](/ja/vantage/documentation/scanning-station/operator/one-time-edit)
* [Batch Type Properties ダイアログ](/ja/vantage/documentation/scanning-station/interface/batch-type-properties-dbox)
* [インターフェイス](/ja/vantage/documentation/scanning-station/interface/interface)
