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
Значение свойства
Формат контейнера для кодека.
- Атрибуты
Примеры
В следующем примере показано, как получить 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)