1 31 package org.pdfbox.pdmodel.font; 32 33 import org.pdfbox.cos.COSDictionary; 34 import org.pdfbox.cos.COSName; 35 36 42 public class PDCIDFontType0Font extends PDCIDFont 43 { 44 47 public PDCIDFontType0Font() 48 { 49 super(); 50 font.setItem( COSName.SUBTYPE, COSName.getPDFName( "CIDFontType0" ) ); 51 } 52 53 58 public PDCIDFontType0Font( COSDictionary fontDictionary ) 59 { 60 super( fontDictionary ); 61 } 62 } | Popular Tags |