UseTargetMachineFonts
Contenuti
[
Nascondere
]HtmlFixedSaveOptions.UseTargetMachineFonts property
Il flag indica se è necessario utilizzare i caratteri del computer di destinazione per visualizzare il documento. Se questo flag è impostato suVERO
,FontFormat
EExportEmbeddedFonts
le proprietà non hanno effetto, ancheResourceSavingCallback
non viene attivato per i caratteri. L’impostazione predefinita èfalso
.
public bool UseTargetMachineFonts { get; set; }
Esempi
Mostra come utilizzare i caratteri solo dal computer di destinazione quando si salva un documento in 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);
Guarda anche
- class HtmlFixedSaveOptions
- spazio dei nomi Aspose.Words.Saving
- assemblea Aspose.Words