mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
修复ImgUtil.convert png转jpg在jdk9+中失败问题
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package cn.hutool.core.img;
|
||||
|
||||
import cn.hutool.core.io.FileUtil;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
public class IssueI8L8UATest {
|
||||
@Test
|
||||
@Ignore
|
||||
public void convertTest() {
|
||||
ImgUtil.convert(
|
||||
FileUtil.file("d:/test/1.png"),
|
||||
FileUtil.file("d:/test/1.jpg"));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user