Aracılığıyla paylaş


BitmapCodecInfo.SpecificationVersion Özellik

Tanım

Codec'in belirtim sürümünü tanımlayan bir değer alır.

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

Özellik Değeri

Version

Codec'in belirtim sürümü.

Öznitelikler

Örnekler

Aşağıdaki örnek, belirli BitmapEncoderbir özelliğinin Author nasıl alınduğunu gösterir. Diğer BitmapCodecInfoöğesini almak için aynı yaklaşımı kullanabilirsiniz.

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)

Şunlara uygulanır

Ayrıca bkz.