ExportFontFormat
Contenu
[
Cacher
]ExportFontFormat enumeration
Indique le format utilisé pour exporter les polices lors du rendu au format HTML fixe.
public enum ExportFontFormat
Valeurs
Nom | Évaluer | La description |
---|---|---|
Woff | 0 | WOFF (Format de police ouvert Web). |
Ttf | 1 | TTF (format de police TrueType). |
Exemples
Montre comment utiliser les polices uniquement de la machine cible lors de l’enregistrement d’un document au format HTML.
Document doc = new Document(MyDir + "Bullet points with alternative font.docx");
HtmlFixedSaveOptions saveOptions = new HtmlFixedSaveOptions
{
ExportEmbeddedCss = true,
UseTargetMachineFonts = useTargetMachineFonts,
FontFormat = ExportFontFormat.Ttf,
ExportEmbeddedFonts = false,
};
doc.Save(ArtifactsDir + "HtmlFixedSaveOptions.UsingMachineFonts.html", saveOptions);
string outDocContents = File.ReadAllText(ArtifactsDir + "HtmlFixedSaveOptions.UsingMachineFonts.html");
if (useTargetMachineFonts)
Assert.False(Regex.Match(outDocContents, "@font-face").Success);
else
Assert.True(Regex.Match(outDocContents,
"@font-face { font-family:'Arial'; font-style:normal; font-weight:normal; src:local[(]'☺'[)], " +
"url[(]'HtmlFixedSaveOptions.UsingMachineFonts/font001.ttf'[)] format[(]'truetype'[)]; }").Success);
Voir également
- property FontFormat
- espace de noms Aspose.Words.Saving
- Assemblée Aspose.Words