OLD | NEW |
| (Empty) |
1 #include "SkPdfType1FontDictionary_autogen.h" | |
2 | |
3 std::string SkPdfType1FontDictionary::Type() const { | |
4 std::string ret; | |
5 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &r
et)) return ret; | |
6 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
7 return ""; | |
8 } | |
9 | |
10 std::string SkPdfType1FontDictionary::Subtype() const { | |
11 std::string ret; | |
12 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Subtype", "",
&ret)) return ret; | |
13 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
14 return ""; | |
15 } | |
16 | |
17 std::string SkPdfType1FontDictionary::Name() const { | |
18 std::string ret; | |
19 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Name", "", &r
et)) return ret; | |
20 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
21 return ""; | |
22 } | |
23 | |
24 std::string SkPdfType1FontDictionary::BaseFont() const { | |
25 std::string ret; | |
26 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "BaseFont", ""
, &ret)) return ret; | |
27 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
28 return ""; | |
29 } | |
30 | |
31 long SkPdfType1FontDictionary::FirstChar() const { | |
32 long ret; | |
33 if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "FirstChar", "
", &ret)) return ret; | |
34 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
35 return 0; | |
36 } | |
37 | |
38 long SkPdfType1FontDictionary::LastChar() const { | |
39 long ret; | |
40 if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "LastChar", ""
, &ret)) return ret; | |
41 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
42 return 0; | |
43 } | |
44 | |
45 SkPdfArray* SkPdfType1FontDictionary::Widths() const { | |
46 SkPdfArray* ret; | |
47 if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Widths", "",
&ret)) return ret; | |
48 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
49 return NULL; | |
50 } | |
51 | |
52 SkPdfFontDescriptorDictionary* SkPdfType1FontDictionary::FontDescriptor() const
{ | |
53 SkPdfFontDescriptorDictionary* ret; | |
54 if (FontDescriptorDictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictiona
ry(), "FontDescriptor", "", &ret)) return ret; | |
55 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
56 return NULL; | |
57 } | |
58 | |
59 std::string SkPdfType1FontDictionary::getEncodingAsName() const { | |
60 std::string ret = ""; | |
61 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Encoding", ""
, &ret)) return ret; | |
62 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
63 return ""; | |
64 } | |
65 | |
66 SkPdfDictionary* SkPdfType1FontDictionary::getEncodingAsDictionary() const { | |
67 SkPdfDictionary* ret = NULL; | |
68 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Encodin
g", "", &ret)) return ret; | |
69 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
70 return NULL; | |
71 } | |
72 | |
73 SkPdfStream* SkPdfType1FontDictionary::ToUnicode() const { | |
74 SkPdfStream* ret; | |
75 if (StreamFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ToUnicode",
"", &ret)) return ret; | |
76 // TODO(edisonn): warn about missing required field, assert for known good pdf
s | |
77 return NULL; | |
78 } | |
OLD | NEW |