1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
#include "SkPdfPDF_XOutputIntentDictionary_autogen.h"
#include "SkPdfNativeDoc.h"
SkString SkPdfPDF_XOutputIntentDictionary::Type(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("Type", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->nameValue2();
// TODO(edisonn): warn about missing default value for optional fields
return SkString();
}
bool SkPdfPDF_XOutputIntentDictionary::has_Type() const {
return get("Type", "") != NULL;
}
SkString SkPdfPDF_XOutputIntentDictionary::S(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("S", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->nameValue2();
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return SkString();
}
bool SkPdfPDF_XOutputIntentDictionary::has_S() const {
return get("S", "") != NULL;
}
SkString SkPdfPDF_XOutputIntentDictionary::OutputCondition(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("OutputCondition", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
// TODO(edisonn): warn about missing default value for optional fields
return SkString();
}
bool SkPdfPDF_XOutputIntentDictionary::has_OutputCondition() const {
return get("OutputCondition", "") != NULL;
}
SkString SkPdfPDF_XOutputIntentDictionary::OutputConditionIdentifier(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("OutputConditionIdentifier", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return SkString();
}
bool SkPdfPDF_XOutputIntentDictionary::has_OutputConditionIdentifier() const {
return get("OutputConditionIdentifier", "") != NULL;
}
SkString SkPdfPDF_XOutputIntentDictionary::RegistryName(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("RegistryName", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
// TODO(edisonn): warn about missing default value for optional fields
return SkString();
}
bool SkPdfPDF_XOutputIntentDictionary::has_RegistryName() const {
return get("RegistryName", "") != NULL;
}
SkString SkPdfPDF_XOutputIntentDictionary::Info(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("Info", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
// TODO(edisonn): warn about missing default value for optional fields
return SkString();
}
bool SkPdfPDF_XOutputIntentDictionary::has_Info() const {
return get("Info", "") != NULL;
}
SkPdfStream* SkPdfPDF_XOutputIntentDictionary::DestOutputProfile(SkPdfNativeDoc* doc) {
SkPdfNativeObject* ret = get("DestOutputProfile", "");
if (doc) {ret = doc->resolveReference(ret);}
if ((ret != NULL && ret->hasStream()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->getStream();
// TODO(edisonn): warn about missing default value for optional fields
return NULL;
}
bool SkPdfPDF_XOutputIntentDictionary::has_DestOutputProfile() const {
return get("DestOutputProfile", "") != NULL;
}
|