word,ppt,pdf 转图片

java 复制代码
@Override
//word
	public Result<List<String>> call(MultipartFile file, String fileName,String bizPath) {
				InputStream inputStream=null;
	 	        List<String> imgList= new ArrayList<>();
	        try {
	        	 inputStream= file.getInputStream();
		         Document doc= new Document(inputStream);
		      for (int i = 0; i < doc.getPageCount(); i++) {
	   		    	Document page = doc.extractPages(i, 1);
                    ByteArrayOutputStream dstStream = new ByteArrayOutputStream();
	   		    	page.save(dstStream, SaveFormat.PNG);
				    ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(dstStream.toByteArray());
				    BufferedImage img = ImageIO.read(byteArrayInputStream);
				    MultipartFile files = ImageUtil.multipartFile(img, System.currentTimeMillis()+"", "png");
                    //上传minio
                    Result<?> upload = uploadUtil.upload(files, bizPath, false);
                    dstStream.flush();
                    dstStream.close();
                    imgList.add(upload.getMessage());
              }
	        } catch (Exception e) {
	            e.printStackTrace();
	        }finally {
	        	if(inputStream!=null) {
	        		  try {
						inputStream.close();
					} catch (IOException e) {
						e.printStackTrace();
					}
	        	}
			}
	        return Result.OK(imgList);
	}

	@Override
	public Result<List<String>> callPpt(MultipartFile file, String fileName, String bizPath) {
		InputStream	inputStream= null;
		List<String> imgList= new ArrayList<>();
		try {
			inputStream= file.getInputStream();
			HSLFSlideShow ppt = new HSLFSlideShow(inputStream);
			Dimension pgsize = ppt.getPageSize();
			for (int idx = 0; idx < ppt.getSlides().size(); idx++) {
				HSLFSlide slide=ppt.getSlides().get(idx);
				BufferedImage img = new BufferedImage(pgsize.width, pgsize.height, BufferedImage.TYPE_INT_RGB);
				Graphics2D graphics = img.createGraphics();
				graphics.setPaint(Color.white);
				graphics.fill(new Rectangle2D.Float(0, 0, pgsize.width, pgsize.height));
				slide.draw(graphics);
				ByteArrayOutputStream dstStream = new ByteArrayOutputStream();
				boolean png = ImageIO.write(img, "png", dstStream);
				if(png){
					MultipartFile files = ImageUtil.multipartFile(img, System.currentTimeMillis()+"", "png");
					Result<?> upload = uploadUtil.upload(files, bizPath, false);
					dstStream.flush();
					dstStream.close();
					imgList.add(upload.getMessage());
				}
			}
		} catch (Exception e) {
			e.printStackTrace();
		}finally {
			if(inputStream!=null) {
				try {
					inputStream.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
		}
		return Result.OK(imgList);
	}

	@Override
	public Result<List<String>> callPptx(MultipartFile file, String fileName, String bizPath) {
		InputStream	inputStream= null;
		List<String> imgList= new ArrayList<>();
		try {
			inputStream= file.getInputStream();
			XMLSlideShow ppt = new XMLSlideShow(inputStream);
			Dimension pgsize = ppt.getPageSize();
			for (int idx = 0; idx < ppt.getSlides().size(); idx++) {
				XSLFSlide slide=ppt.getSlides().get(idx);
				BufferedImage img = new BufferedImage(pgsize.width, pgsize.height, BufferedImage.TYPE_INT_RGB);
				Graphics2D graphics = img.createGraphics();
				graphics.setPaint(Color.white);
				graphics.fill(new Rectangle2D.Float(0, 0, pgsize.width, pgsize.height));
				slide.draw(graphics);
				ByteArrayOutputStream dstStream = new ByteArrayOutputStream();
				boolean png = ImageIO.write(img, "png", dstStream);
				if(png){
					MultipartFile files = ImageUtil.multipartFile(img, System.currentTimeMillis()+"", "png");
					Result<?> upload = uploadUtil.upload(files, bizPath, false);
					dstStream.flush();
					dstStream.close();
					imgList.add(upload.getMessage());
				}
			}
		} catch (Exception e) {
			e.printStackTrace();
		}finally {
			if(inputStream!=null) {
				try {
					inputStream.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
		}
		return Result.OK(imgList);
	}


	@Override
	public Result<List<String>> callPdf(MultipartFile file, String fileName, String bizPath) {
		InputStream inputStream=null;
		PDDocument doc = null;
		List<String> imgList= new ArrayList<>();
		try {
			inputStream = file.getInputStream();
			doc = PDDocument.load(inputStream);
			PDFRenderer renderer = new PDFRenderer(doc);
			for (int i = 0; i <doc.getNumberOfPages(); i++) {
				BufferedImage img = renderer.renderImageWithDPI(i, 100);
				PDFTextStripper pdfStripper = new PDFTextStripper();
				pdfStripper.setStartPage(i);
				pdfStripper.setEndPage(i);
				ByteArrayOutputStream dstStream = new ByteArrayOutputStream();
				boolean png = ImageIO.write(img, "png", dstStream);
				if(png){
					MultipartFile files = ImageUtil.multipartFile(img, System.currentTimeMillis()+"", "png");
					Result<?> upload = uploadUtil.upload(files, bizPath, false);
					dstStream.flush();
					dstStream.close();
					imgList.add(upload.getMessage());
				}
			}
		}catch (Exception e) {
			e.printStackTrace();
		}finally {
			if(doc!=null) {
				try {
					doc.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
		}

		return Result.OK(imgList);
	}

maven

java 复制代码
!--word转pdf -->
        <dependency>
		   <groupId>com.aspose</groupId>
		   <artifactId>aspose-words</artifactId>
		   <version>15.12.0</version>
		   <scope>system</scope>
		   <systemPath>${project.basedir}/src/main/resources/lib/aspose-words-15.12.0-jdk16.jar</systemPath>
		</dependency>
        <!--ppt转pdf -->
        <dependency>
		   <groupId>com.aspose</groupId>
		   <artifactId>aspose-slides</artifactId>
		   <version>15.9.0</version>
		   <scope>system</scope>
		   <systemPath>${project.basedir}/src/main/resources/lib/aspose.slides-15.9.0.jar</systemPath>
		</dependency>
		<dependency>
			<groupId>com.aspose</groupId>
			<artifactId>aspose-words</artifactId>
			<version>21.1.0</version>
		</dependency>

		<!-- Apache PDFBox -->
		<dependency>
			<groupId>org.apache.pdfbox</groupId>
			<artifactId>pdfbox</artifactId>
			<version>2.0.27</version> <!-- 确保使用最新版本 -->
		</dependency>

		<!-- 如果需要额外的功能,如字体处理,可以添加以下依赖 -->
		<dependency>
			<groupId>org.apache.pdfbox</groupId>
			<artifactId>fontbox</artifactId>
			<version>2.0.27</version> <!-- 确保版本与pdfbox一致 -->
		</dependency>


        <!--excel转pdf -->
        <dependency>
		   <groupId>com.aspose</groupId>
		   <artifactId>aspose-cells</artifactId>
		   <version>8.5.2</version>
		   <scope>system</scope>
		   <systemPath>${project.basedir}/src/main/resources/lib/aspose-cells-8.5.2.jar</systemPath>
		</dependency>
		<!-- https://mvnrepository.com/artifact/com.lowagie/itext -->
		<dependency>
			<groupId>com.lowagie</groupId>
			<artifactId>itext</artifactId>
			<version>2.1.7</version>
		</dependency>
		<dependency>
			<groupId>commons-fileupload</groupId>
			<artifactId>commons-fileupload</artifactId>
			<version>1.3.3</version>
		</dependency>

ImageUtil

java 复制代码
 public static MultipartFile multipartFile(Image image,String fileName,String suffix){
        //创建一个ByteArrayOutputStream
        ByteArrayOutputStream os = new ByteArrayOutputStream();
        //把BufferedImage写入ByteArrayOutputStream
        ImgUtil.write(image, suffix, os);
        //ByteArrayOutputStream转成InputStream
        InputStream input = new ByteArrayInputStream(os.toByteArray());
        //InputStream转成MultipartFile
        try {
            return new MockMultipartFile(fileName, fileName+"."+suffix, ContentType.contentType(suffix), input);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return null;
    }

工具类和jar包找不到的私信

相关推荐
Lxinccode2 小时前
Java查询数据库表信息导出Word-获取数据库实现[1]:KingbaseES
java·数据库·word·获取数据库信息·获取kingbasees信息
pyengine7 小时前
基于pandoc的MarkDown格式与word相互转换小工具开发(pyqt5)
开发语言·python·qt·word
陌殇殇9 小时前
Java使用IText7动态生成带审批文本框的PDF文档
java·pdf
东方佑17 小时前
使用Python创建带边框样式的Word表格
数据库·python·word
Ven%17 小时前
VsCode如何使用默认程序打开word Excel pdf等文件
ide·vscode·pdf·编辑器
软件工程小施同学18 小时前
计算机学报 2024年 区块链论文 录用汇总 附pdf下载
pdf·区块链
Lxinccode20 小时前
Java查询数据库表信息导出Word
word·数据库信息导出为word文档
Sherlock Ma1 天前
PDFMathTranslate:基于LLM的PDF文档翻译及双语对照的工具【使用教程】
人工智能·pytorch·语言模型·pdf·大模型·机器翻译·deepseek
kadog1 天前
PubMed PDF下载 cloudpmc-viewer-pow逆向
前端·javascript·人工智能·爬虫·pdf
振宇i1 天前
Java 富文本转word
java·word·富文本·docx4j