首页>代码>spring boot整合icepdf实现pdf转图片>/springboot-pdf2Image/src/main/java/com/simon/springbootpdftoimage/controller/PdfController.java
package com.simon.springbootpdftoimage.controller;
import com.simon.springbootpdftoimage.util.ImageUtils;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletResponse;
/**
* @author Simon
* @description: 用于处理Pdf相关的请求
*/
@Controller
@RequestMapping("pdf")
public class PdfController {
@PostMapping("to/image")
public void pdfToImage(@RequestParam("file") MultipartFile file, HttpServletResponse response) throws Exception {
ImageUtils.pdfToImage(file, response);
}
}
最近下载更多
最近浏览更多
3334004690 LV11
1月15日
strongning LV3
2023年6月1日
szf123 LV12
2023年5月30日
master_guo LV7
2023年4月12日
做你的景天 LV7
2023年4月12日
interface LV22
2023年4月5日
8战魂5无双8 LV43
2023年4月1日
随便取个名字_哈哈 LV27
2023年3月29日
Yanxigul
2023年3月28日
暂无贡献等级
舞绝城
2023年3月21日
暂无贡献等级

