PngInterlaceOption 枚举

定义

指定是否在编码过程中对可移植网络图形 (PNG) 格式图像进行隔行扫描。

public enum class PngInterlaceOption
public enum PngInterlaceOption
type PngInterlaceOption = 
Public Enum PngInterlaceOption
继承
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)

注解

交错是指在两个字段中显示 PNG 帧的过程。 一个字段包含帧的偶数线,而另一个字段包含框架的奇数线。 查看 PNG 时,先显示一个字段中的行,然后显示第二个字段中的行。

适用于

另请参阅