Comment : lire des métadonnées à partir d'une image bitmap
Mise à jour : novembre 2007
Cet exemple montre comment lire des métadonnées de bitmap à l'aide du langage de requête des métadonnées. Pour l'exemple complet, consultez BitmapMetadata, exemple.
Exemple
' 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();