ImageExportStrategy

DocumentConverterOptions.ImageExportStrategy property

Gets or sets the strategy for handling image export during document conversion.

public IImageExportStrategy ImageExportStrategy { get; set; }

Property Value

The image export strategy that determines how images are processed during conversion. Default is ExportImagesAsBase64Strategy.

Remarks

You can choose from several built-in strategies:

Or implement your own strategy by creating a class that implements IImageExportStrategy.

See Also