Vcl.Imaging.GIFImg.TGIFImage.DitherMode

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

property DitherMode: TDitherMode read FDitherMode write FDitherMode;

C++

__property TDitherMode DitherMode = {read=FDitherMode, write=FDitherMode, nodefault};

プロパティ

種類 可視性 ソース ユニット
property public
Vcl.Imaging.GIFImg.pas
Vcl.Imaging.GIFImg.hpp
Vcl.Imaging.GIFImg TGIFImage

説明

GIF イメージが表示されるときに使われるディザリングアルゴリズムを指定します。

DitherMode プロパティは TGIFImage イメージインスタンスが保持している GIF イメージの一つのパレットを最適化か減色するときに使うディザリングアルゴリズムを指定します。

The following table lists the possible values of the DitherMode property, together with their meanings. 以下の表では DitherMode プロパティ の取ることができる値を、その意味と共に列挙しています。


意味

dmNearest

Use the nearest color matching algorithm, without error correction.

dmFloydSteinberg

Use the Floyd-Steinberg error diffusion dithering algorithm.

dmStucki

Use the Stucki error diffusion dithering algorithm.

dmSierra

Use the Sierra error diffusion dithering algorithm.

dmJaJuNI

Use the Jarvis, Judice, and Ninke error diffusion dithering algorithm.

dmSteveArche

Use the Stevenson and Arche error diffusion dithering algorithm.

dmBurkes

Use the Burkes error diffusion dithering algorithm.



関連項目