[]
Represents Type3 font in PDF document. Type 3 fonts differ from the other fonts supported by PDF. In Type 3 fonts, glyphs are defined by streams of PDF graphics operators. These streams are associated with character names. Note! FontType3 does not support CreateNativeFont() method, it returns null.
public class FontType3 : FontSimple, IPdfDict
Gets a value indicating whether the font is embedded.
public override bool IsEmbedded { get; }
Gets a Font object created from the embedded font data.
Note that this method will return null if the font is not embedded or does not support this operation (e.g. Type3 fonts).
public override Font CreateNativeFont()
Removes the embedded font data.
Please note that a PDF may display incorrectly after removing an embedded font's data. Use with caution.
public override void RemoveEmbeddedData(GcPdfDocument doc)
doc
GcPdfDocumentThe document that owns the font.