InPlaceBitmapMetadataWriter.TrySave Method

Definition

Gets a value that indicates whether image metadata can be saved successfully.

[System.Security.SecurityCritical]
public bool TrySave();
public bool TrySave();

Returns

true if bitmap metadata can be written successfully; otherwise, false.

Attributes

Examples

The following code example demonstrates how to use the TrySave method to determine whether metadata can be written successfully to a Tagged Image File Format (TIFF) image.

Stream pngStream = new System.IO.FileStream("smiley.png", FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite);
PngBitmapDecoder pngDecoder = new PngBitmapDecoder(pngStream, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.Default);
BitmapFrame pngFrame = pngDecoder.Frames[0];
InPlaceBitmapMetadataWriter pngInplace = pngFrame.CreateInPlaceBitmapMetadataWriter();
if (pngInplace.TrySave())
{ pngInplace.SetQuery("/Text/Description", "Have a nice day."); }
pngStream.Close();

Applies to

Produkt Wersje
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10