ExportFontsAsBase64
Contenuti
[
Nascondere
]HtmlSaveOptions.ExportFontsAsBase64 property
Specifica se le risorse dei caratteri devono essere incorporate nell’HTML nella codifica Base64. L’impostazione predefinita èfalso
.
public bool ExportFontsAsBase64 { get; set; }
Osservazioni
Per impostazione predefinita, i caratteri vengono scritti in file separati. Se questa opzione è impostata suVERO
, i caratteri verranno incorporati nel CSS del documento con la codifica Base64.
Esempi
Mostra come incorporare i caratteri all’interno di un documento HTML salvato.
Document doc = new Document(MyDir + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions
{
ExportFontsAsBase64 = true,
CssStyleSheetType = CssStyleSheetType.Embedded,
PrettyFormat = true
};
doc.Save(ArtifactsDir + "HtmlSaveOptions.ExportFontsAsBase64.html", options);
Mostra come salvare un documento .html con immagini incorporate al suo interno.
Document doc = new Document(MyDir + "Rendering.docx");
HtmlSaveOptions options = new HtmlSaveOptions
{
ExportImagesAsBase64 = exportImagesAsBase64,
PrettyFormat = true
};
doc.Save(ArtifactsDir + "HtmlSaveOptions.ExportImagesAsBase64.html", options);
string outDocContents = File.ReadAllText(ArtifactsDir + "HtmlSaveOptions.ExportImagesAsBase64.html");
Assert.True(exportImagesAsBase64
? outDocContents.Contains("<img src=\"data:image/png;base64")
: outDocContents.Contains("<img src=\"HtmlSaveOptions.ExportImagesAsBase64.001.png\""));
Guarda anche
- class HtmlSaveOptions
- spazio dei nomi Aspose.Words.Saving
- assemblea Aspose.Words