Shape shape = new Shape(document, ShapeType.IMAGE);
shape.setWidth(60);
shape.setHeight(40);
shape.setLeft(50);
shape.setTop(0);
shape.setBehindText(true);
dirPath=imagePath+"/"+taskKey+".png";//图片路径
//图片
DocumentBuilder builder = new DocumentBuilder(document);
shape.getImageData().setImage(dirPath);
builder.moveToBookmark("PO_FORM_DATA_PIC");//书签名字
builder.insertNode(shape);