BitmapCodecInfo.SpecificationVersion Egenskap
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Hämtar ett värde som identifierar specifikationsversionen av codec.
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
Egenskapsvärde
Specifikationsversionen av codec.
- Attribut
Exempel
I följande exempel visas hur du hämtar egenskapen för Author en viss BitmapEncoder. Du kan använda samma metod för att hämta andra 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)