GetField15Python - mdaus/nitro GitHub Wiki
field = record.header['fileDateTime'] # the lookup is case insensitive, so filedatetime would also work
fieldStr = str(field) # same as field.getString()
fieldLen = field.getLength()
#this demonstrates getting the nbpp of the first image
nbpp = record.getImages()[0].subheader['nbpp'] #could've also used numBitsPerPixel
fieldStr = str(field) # same as field.getString()
fieldLen = field.getLength()
#this demonstrates getting the nbpp of the first image
nbpp = record.getImages()[0].subheader['nbpp'] #could've also used numBitsPerPixel