Sdílet prostřednictvím


BitmapEncoder.Frames Vlastnost

Definice

Získá nebo nastaví jednotlivé snímky v rámci obrázku.

public:
 virtual property System::Collections::Generic::IList<System::Windows::Media::Imaging::BitmapFrame ^> ^ Frames { System::Collections::Generic::IList<System::Windows::Media::Imaging::BitmapFrame ^> ^ get(); void set(System::Collections::Generic::IList<System::Windows::Media::Imaging::BitmapFrame ^> ^ value); };
public virtual System.Collections.Generic.IList<System.Windows.Media.Imaging.BitmapFrame> Frames { get; set; }
member this.Frames : System.Collections.Generic.IList<System.Windows.Media.Imaging.BitmapFrame> with get, set
Public Overridable Property Frames As IList(Of BitmapFrame)

Hodnota vlastnosti

IList<BitmapFrame>

Kolekce BitmapFrame objektů v rámci obrázku.

Výjimky

Hodnota BitmapFrame předaná kodéru je null.

Příklady

Následující příklad ukazuje, jak přidat rámec do kodéru.

FileStream stream = new FileStream("empty.tif", FileMode.Create);
TiffBitmapEncoder encoder = new TiffBitmapEncoder();
TextBlock myTextBlock = new TextBlock();
myTextBlock.Text = "Codec Author is: " + encoder.CodecInfo.Author.ToString();
encoder.Frames.Add(BitmapFrame.Create(image));
MessageBox.Show(myPalette.Colors.Count.ToString());
encoder.Save(stream);
Dim stream As New FileStream("empty.tif", FileMode.Create)
Dim encoder As New TiffBitmapEncoder()
Dim myTextBlock As New TextBlock()
myTextBlock.Text = "Codec Author is: " + encoder.CodecInfo.Author.ToString()
encoder.Frames.Add(BitmapFrame.Create(image))
MessageBox.Show(myPalette.Colors.Count.ToString())
encoder.Save(stream)

Poznámky

Obrázky s obrázky ve formátu TIFF (Tagged Image File Format), Graphics Interchange Format (GIF) a Microsoft Windows Media Photo podporují více snímků. Pokusy o přidání dalších rámců do formátů, které je nepodporují, budou mít za následek pouze první zakódovaný rámec.

Použití textu XAML

Tuto vlastnost nelze použít v jazyku XAML (Extensible Application Markup Language).

Platí pro

Viz také