Gewusst wie: Lesen von Metadaten aus einer Bitmap
Aktualisiert: November 2007
Dieses Beispiel zeigt, wie Sie mithilfe der Metadatenabfragesprache Bitmapmetadaten lesen. Das vollständige Beispiel finden Sie unter Beispiel für BitmapMetadata.
Beispiel
' Add the metadata of the bitmap image to the text block.
Dim myTextBlock As New TextBlock()
myTextBlock.Text = "The Description metadata of this image is: " + pngInplace.GetQuery("/Text/Description").ToString()
// Add the metadata of the bitmap image to the text block.
TextBlock myTextBlock = new TextBlock();
myTextBlock.Text = "The Description metadata of this image is: " + pngInplace.GetQuery("/Text/Description").ToString();