package com.walker.infrastructure; import com.walker.infrastructure.utils.ImageUtils; import org.junit.Test; public class TestImage { @Test public void scaleImage(){ // String filePath = "F:/app_ocr_demo/ocr_oil_012.jpg"; String filePath = "F:/app_ocr_demo/ocr_oil_013_s.jpg"; // String destPath = FileUtils.getThumbNailsName(filePath); String destPath = ImageUtils.scaleImage4Jpg(filePath, 800); System.out.println("压缩后文件路径 = " + destPath); } }