[]
Represents the image data of an SVG vector image.
Note that when an SVG image is added to the document, it is automatically rasterized, and the raster copy of the image is saved in an ImageData instance. The VectorGraphicImageData class is used to preserve the original vector image.
public class VectorGraphicImageData
Gets the vector image content type.
public string ContentType { get; }
Gets the raw bytes of the vector image.
public byte[] ImageBytes { get; }
Gets the path and name of the source file for the linked image.
public Uri Source { get; }
Saves the image into a specified stream.
public void Save(Stream stream)
stream
System.IO.StreamThe stream where to save the image.