Obj info = thisDoc.getTrailer().findObj("Info");
Obj conf = info.findObj("GTS_PDFXConformance");
....but we haven't had any luck working with OutputIntent. Any guidance appreciated.
Thank you.
Obj root = doc.GetRoot();
Obj output_intent = root.FindObj("OutputIntents");
if (output_intent != null) {
Obj di = 0;
int i, sz = output_intent.Size();
for (i=0; i<sz; ++i) {
Obj intent = output_intent.GetAt(i);
if (intent.FindObj("DestOutputProfileRef")) { ..
}
Obj dest_intent_stm = intent.FindObj("DestOutputProfile");