RED-9139: fix Image IDs

This commit is contained in:
Kilian Schuettler 2024-11-15 15:15:49 +01:00
parent 21f2ded6c6
commit 8769922bf2

View File

@ -68,6 +68,7 @@ public class PropertiesMapper {
builder.imageType(parseImageType(properties.get(DocumentStructureWrapper.ImageProperties.IMAGE_TYPE)));
builder.transparent(Boolean.parseBoolean(properties.get(DocumentStructureWrapper.ImageProperties.TRANSPARENT)));
builder.position(DocumentStructureWrapper.parseRectangle2D(properties.get(DocumentStructureWrapper.ImageProperties.POSITION)));
builder.id(properties.get(DocumentStructureWrapper.ImageProperties.ID));
}