다음을 통해 공유


BitmapCodecInfo.ContainerFormat 속성

정의

코덱의 컨테이너 형식을 식별하는 값을 가져옵니다.

public:
 virtual property Guid ContainerFormat { Guid get(); };
public virtual Guid ContainerFormat { [System.Security.SecurityCritical] get; }
public virtual Guid ContainerFormat { get; }
[<get: System.Security.SecurityCritical>]
member this.ContainerFormat : Guid
member this.ContainerFormat : Guid
Public Overridable ReadOnly Property ContainerFormat As Guid

속성 값

Guid

코덱의 컨테이너 형식입니다.

특성

예제

다음 예제에서는 검색 하는 방법에 설명 합니다 Author 의 속성을 지정 BitmapEncoder합니다. 동일한 접근 방식을 사용 하 여 다른 검색할 BitmapCodecInfo합니다.

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)

적용 대상

추가 정보