Hi,
how to create a floating (as opposed to an inline) image with docx4j ? After loading the image as a binary part:
BinaryPartAbstractImage imagePart = BinaryPartAbstractImage.createImagePart(pkg, source_part, new File(filename));
the only function which can be called on that is createImageInline, which produces the image wrapped in an <inline> element not the <anchor> element like I would like it to be. Is it possible ?