IUriProvider.CreateImageUri(String, OfficeImage, String) Method
Creates an image URI.
Namespace: DevExpress.Office.Services
Assembly: DevExpress.Office.v24.1.Core.dll
NuGet Packages: DevExpress.Office.Core, DevExpress.Win.Navigation
Declaration
Parameters
Name | Type | Description |
---|---|---|
rootUri | String | A string that specifies the root URI. |
image | OfficeImage | An OfficeImage object for which the URI is created. |
relativeUri | String | A string that specifies the relative part of the URI (path relative to the root). |
Returns
Type | Description |
---|---|
String | A string that is the image URI. |
Remarks
Implement the CreateImageUri method to supply an URI that is specific to the export type. Built-in URI providers return URI strings in the following forms:
- file://<path>/image<NN>.png for the file based URI provider (HTML export), where NN is the index of an image on the page.
- data:<MIME-type>base64,<a string of data in base64 format>“ for the HTML export using embedded images
See Also