PngInterlaceOption 列挙型
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
エンコード時にポータブル ネットワーク グラフィックス (PNG) 形式のイメージがインターレースされるかどうかを指定します。
public enum class PngInterlaceOption
public enum PngInterlaceOption
type PngInterlaceOption =
Public Enum PngInterlaceOption
- 継承
フィールド
Default | 0 | PngBitmapEncoder はイメージをインターレースする必要があるかどうかを判断します。 |
Off | 2 | 結果のビットマップ イメージをインター レースしません。 |
On | 1 | 結果のビットマップ イメージをインター レースします。 |
例
次の例では、クラスのプロパティを使用する Interlace 方法を PngBitmapEncoder 示します。
FileStream^ stream = gcnew FileStream("new.png", FileMode::Create);
PngBitmapEncoder^ encoder = gcnew PngBitmapEncoder();
TextBlock^ myTextBlock = gcnew TextBlock();
myTextBlock->Text = "Codec Author is: " + encoder->CodecInfo->Author->ToString();
encoder->Interlace = PngInterlaceOption::On;
encoder->Frames->Add(BitmapFrame::Create(image));
encoder->Save(stream);
FileStream stream = new FileStream("new.png", FileMode.Create);
PngBitmapEncoder encoder = new PngBitmapEncoder();
TextBlock myTextBlock = new TextBlock();
myTextBlock.Text = "Codec Author is: " + encoder.CodecInfo.Author.ToString();
encoder.Interlace = PngInterlaceOption.On;
encoder.Frames.Add(BitmapFrame.Create(image));
encoder.Save(stream);
Dim stream As New FileStream("new.png", FileMode.Create)
Dim encoder As New PngBitmapEncoder()
Dim myTextBlock As New TextBlock()
myTextBlock.Text = "Codec Author is: " + encoder.CodecInfo.Author.ToString()
encoder.Interlace = PngInterlaceOption.On
encoder.Frames.Add(BitmapFrame.Create(image))
encoder.Save(stream)
注釈
インターレースとは、2 つのフィールドに PNG フレームを表示するプロセスを指します。 一方のフィールドにはフレームの偶数行が含まれますが、もう一方のフィールドにはフレームの奇数行が含まれます。 PNG を表示すると、1 つのフィールドの行が最初に表示され、次に 2 番目のフィールドの行が表示されます。