EmbedSystemFonts
Contenuti
[
Nascondere
]FontInfoCollection.EmbedSystemFonts property
Specifica se incorporare o meno i caratteri di sistema nel documento. Il valore predefinito per questa proprietà èfalso
.
Questa opzione funziona solo quandoEmbedTrueTypeFonts
l’opzione è impostata suVERO
.
public bool EmbedSystemFonts { get; set; }
Osservazioni
Impostazione di questa proprietà suVERO
è utile se l’utente utilizza un sistema dell’Asia orientale e desidera creare un documento leggibile da altri che non dispongono di caratteri per quella lingua sul proprio sistema. Ad esempio, un utente su un sistema giapponese potrebbe scegliere di incorporare i caratteri in un documento in modo che il documento giapponese sia leggibile su tutti i sistemi.
Questa opzione funziona solo per 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
- class FontInfoCollection
- spazio dei nomi Aspose.Words.Fonts
- assemblea Aspose.Words