Custom position for image after merge cell in excel by java
[Java] After merge 4 or 5 rows of second column in excel from the second row, I inserted a image to this area by anchor support. Finally, I wish this image is center aligned auto in merged cell. I hope every one can support to me!
XSSFWorkbook workbook = null;//you can insert
XSSFSheet sheet = null;//you can insert
Pattern p = Pattern.compile("src=\"(.*?)\"");
Matcher matcher = p.matcher(htmlThumbail);
if(matcher.find()) {
String[] base64Image =...