Cell cell1 = table1.getCellByPosition(0, 0);
Image image3 = cell1.setImage(ResourceUtilities.getURI("image_list_item.png"));
image3.setHorizontalPosition(FrameHorizontalPosition.LEFT);
image3.setHyperlink(new URI("http://odftoolkit.org"));
Assert.assertEquals("http://odftoolkit.org", image3.getHyperlink().toString());
sDoc.save(ResourceUtilities.newTestOutputFile("imges.odt"));
SpreadsheetDocument sheet = SpreadsheetDocument.newSpreadsheetDocument();
Table table2 = sheet.getTableList().get(0);
Cell cell2 = table2.getCellByPosition(1, 1);
Image image4 = cell2.setImage(ResourceUtilities.getURI("image_list_item.png"));