public PdfCIDFont(
     PdfObjectId objectId, PdfFontSubTypeEnum subType, string baseFont)
     : base(objectId)
 {
     this[PdfName.Names.Type]        = PdfName.Names.Font;
     this[PdfName.Names.Subtype]     = new PdfName(subType.ToString());
     this[PdfName.Names.BaseFont]    = new PdfName(baseFont);
     this[PdfName.Names.DW]          = new PdfNumeric(1000);
     this[PdfName.Names.CIDToGIDMap] = PdfName.Names.Identity;
 }
Exemple #2
0
 public PdfCIDFont(
     PdfObjectId objectId, PdfFontSubTypeEnum subType, string baseFont)
     : base(objectId)
 {
     this[PdfName.Names.Type] = PdfName.Names.Font;
     this[PdfName.Names.Subtype] = new PdfName(subType.ToString());
     this[PdfName.Names.BaseFont] = new PdfName(baseFont);
     this[PdfName.Names.DW] = new PdfNumeric(1000);
     this[PdfName.Names.CIDToGIDMap] = PdfName.Names.Identity;
 }
Exemple #3
0
 public Class35(PdfFontSubTypeEnum subType, string baseFont)
     : base(baseFont, subType.ToString())
 {
     this.value["DW"]          = (IPdfObject) new PdfInt(1000);
     this.value["CIDToGIDMap"] = (IPdfObject) new PdfName("Identity");
 }