Field(DCNS('subject.type'), 'kinds', salias='kind', multiple=True),
Field(DCNS('format.dimensions'), 'dimensions', required=False),
+ Field(DCNS('format.checksum.sha1'), 'sha1', required=True),
Field(DCNS('description.medium'), 'medium', required=False),
Field(DCNS('description.dimensions'), 'original_dimensions', required=False),
Field(DCNS('format'), 'mime_type', required=False),
def image_file(self, *args, **kwargs):
return open(self.image_path, *args, **kwargs)
+
+ def partiter(self):
+ """
+ Iterates the parts of this picture and returns them and their metadata
+ """
+ for part in self.edoc.iter("div"):
+ pd = {}
+ pd['type'] = part.get('type')
+ if pd['type'] == 'area':
+ pd['coords'] = ((int(part.get('x1')), int(part.get('y1'))),
+ (int(part.get('x2')), int(part.get('y2'))))
+
+ pd['themes'] = []
+ pd['object'] = None
+ parent = part
+ while True:
+ parent = parent.getparent()
+ if parent is None:
+ break
+ if parent.tag == 'sem':
+ if parent.get('type') == 'theme':
+ pd['themes'] += map(unicode.strip, unicode(parent.get('theme')).split(','))
+ elif parent.get('type') == 'object' and pd['object'] is None:
+ pd['object'] = parent.get('object')
+ yield pd