DrawFrameElement frame = contentDom.newOdfElement(DrawFrameElement.class);
frame.setSvgHeightAttribute("3in");
frame.setSvgWidthAttribute("7in");
DrawImageElement image = contentDom.newOdfElement(DrawImageElement.class);
image.setXlinkHrefAttribute("Pictures/myHoliday.jpg");
frame.appendChild(image);
TextPElement para = (TextPElement) xpath.evaluate("//text:p[1]", contentDom, XPathConstants.NODE);
para.appendChild(frame);
doc.save(TEST_FILE_FOLDER + New_File);
doc.close();