Browse Source

图片转换成文件,直接加入word

tags/v1.1.0
qiujinyang 2 years ago
parent
commit
7b7ba5b4b2
1 changed files with 6 additions and 14 deletions
  1. +6
    -14
      tuoheng-admin/src/main/java/com/tuoheng/admin/service/impl/ReportServiceImpl.java

+ 6
- 14
tuoheng-admin/src/main/java/com/tuoheng/admin/service/impl/ReportServiceImpl.java View File

@@ -469,25 +469,17 @@ public class ReportServiceImpl extends BaseServiceImpl<ReportMapper, Report> imp
str = " 问题图片";
cell.add(new Paragraph(str, font));
} else{
Image image = null;
//String url = CommonConfig.imageURL + reportInfoVO.getQuestionReportList().get(i).getFileMarkerUrl();
String url = reportInfoVO.getQuestionReportList().get(i).getFileMarkerUrl();
UrlResource urlResource = new UrlResource(url);
boolean exists = urlResource.exists();
// if (exists) {
// image = Image.getInstance(url);
// image.setAlignment(Image.ALIGN_CENTER);
// image.scalePercent(50); //依照比例缩放
// //image.setAbsolutePosition(400, 600);
// image.scaleToFit(50, 50);//自定义大
// } else {
// log.error("图片不存在!" + url);
// }
if (exists) {
File file = urlResource.getFile();
cell.add(file);
if (urlResource.exists()) {
Image image = Image.getInstance(url);
image.setAlignment(Image.ALIGN_CENTER);
image.setAbsolutePosition(0, 0);
cell.add(image);
} else {
cell.add(new Paragraph(""));
log.error("图片不存在!" + url);
}
}
table4.addCell(cell);

Loading…
Cancel
Save