Returns null to indicate that the image should be embedded as Base64.
Remarks
This strategy converts all images to Base64 format and embeds them directly in the Markdown document using the data URI scheme. This eliminates the need for separate image files, making the Markdown document self-contained. However, this approach increases the size of the Markdown file and may not be supported by all Markdown viewers.
Examples
The following example shows how to use ExportImagesAsBase64Strategy when converting a document:
// Base64 is the default, but can be set explicitly:varoptions=newConvertOptions{ImageExportStrategy=newExportImagesAsBase64Strategy()};stringmarkdown=MarkdownConverter.ToMarkdown("document.docx",options);