Freigeben über


PngBitmapEncoder.Interlace Eigenschaft

Definition

Ruft einen Wert ab oder legt einen Wert fest, der angibt, ob die Png-Bitmap (Portable Network Graphics) interlace.

public:
 property System::Windows::Media::Imaging::PngInterlaceOption Interlace { System::Windows::Media::Imaging::PngInterlaceOption get(); void set(System::Windows::Media::Imaging::PngInterlaceOption value); };
public System.Windows.Media.Imaging.PngInterlaceOption Interlace { get; set; }
member this.Interlace : System.Windows.Media.Imaging.PngInterlaceOption with get, set
Public Property Interlace As PngInterlaceOption

Eigenschaftswert

PngInterlaceOption

Einer der Interlace-Werte. Der Standardwert ist Default.

Beispiele

Im folgenden Beispiel wird veranschaulicht, wie sie die Interlace Eigenschaft verwenden.

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)

Hinweise

Interlacing bezieht sich auf den Prozess der Anzeige eines PNG-Frames in zwei Feldern. Ein Feld enthält die sogar Linien des Rahmens, und das andere Feld enthält die ungeraden Linien des Frames. Wenn das PNG angezeigt wird, werden die Zeilen in einem Feld zuerst angezeigt, und dann werden die Zeilen im zweiten Feld angezeigt.

Gilt für