SaveSubsetFonts

FontInfoCollection.SaveSubsetFonts property

Specifica se salvare o meno un sottoinsieme dei caratteri TrueType incorporati con il documento. Il valore predefinito per questa proprietà èfalso.

Questa opzione funziona solo quandoEmbedTrueTypeFonts la proprietà è impostata suVERO.

public bool SaveSubsetFonts { get; set; }

Osservazioni

Questa opzione funziona solo con i formati DOC, DOCX e RTF.

Esempi

Mostra come salvare un documento con caratteri TrueType incorporati.

Document doc = new Document(MyDir + "Document.docx");

FontInfoCollection fontInfos = doc.FontInfos;
fontInfos.EmbedTrueTypeFonts = embedAllFonts;
fontInfos.EmbedSystemFonts = embedAllFonts;
fontInfos.SaveSubsetFonts = embedAllFonts;

doc.Save(ArtifactsDir + "Font.FontInfoCollection.docx");

if (embedAllFonts)
    Assert.That(25000, Is.LessThan(new FileInfo(ArtifactsDir + "Font.FontInfoCollection.docx").Length));
else
    Assert.That(15000, Is.AtLeast(new FileInfo(ArtifactsDir + "Font.FontInfoCollection.docx").Length));

Guarda anche