BitmapEncoder.Frames 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이미지 내에서 개별 프레임을 가져오거나 설정합니다.
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)
속성 값
이미지 내의 BitmapFrame 개체 컬렉션입니다.
예외
인코더에 전달되는 BitmapFrame 값은 null
입니다.
예제
다음 예제에서는 인코더에 프레임을 추가하는 방법을 보여 줍니다.
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)
설명
태그가 지정된 TIFF(이미지 파일 형식), GIF(그래픽 교환 형식) 및 Microsoft Windows 미디어 사진 이미지만 둘 이상의 프레임을 지원합니다. 프레임을 지원하지 않는 형식에 추가 프레임을 추가하려고 하면 첫 번째 프레임만 인코딩됩니다.
XAML 텍스트 사용
XAML(Extensible Application Markup Language)에서는 이 속성을 사용할 수 없습니다.