This commit is contained in:
Looly 2024-07-10 19:44:38 +08:00
parent 48cc7f5b57
commit b335a2e1dc

View File

@ -53,6 +53,13 @@ public class ImgUtilTest {
new Rectangle(0, 0, 400, 240));
}
@Test
@Ignore
public void cutTest2() {
final Image cut = ImgUtil.cut(ImgUtil.read("d:/test/logo_small.jpg"), 0, 0, 50);
ImgUtil.write(cut, FileUtil.file("d:/test/target.jpg"));
}
@Test
@Ignore
public void rotateTest() throws IOException {