Skip to main content
A newer version of this page is available. .

ImageSource.FromFile(String) Method

Creates an ImageSource object and specifies its ImageSource.SvgImage or ImageSource.Image property depending on the image stored in the specified file.

Namespace: DevExpress.XtraPrinting.Drawing

Assembly: DevExpress.Printing.v18.2.Core.dll

Declaration

public static ImageSource FromFile(
    string filename
)

Parameters

Name Type Description
filename String

A file name to be used to get an image for the created ImageSource object.

Returns

Type Description
ImageSource

An ImageSource object that stores the image from the specified file.

Remarks

Use this static method to create an ImageSource object for the image that is stored in a specified file. This method detects the image type and saves the image to the ImageSource.SvgImage or ImageSource.Image property correspondingly.


using DevExpress.Utils.Svg;
using DevExpress.XtraPrinting.Drawing;
//...
SvgImage myImage = SvgImage.FromFile(@"../../myImage.svg");
ImageSource = ImageSource.FromFile(@"../../myImage.svg")
See Also