mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
excel中添加图片的方法
This commit is contained in:
@@ -807,4 +807,18 @@ public class ExcelWriteTest {
|
||||
writer.merge(0,1,2,2,3.99,false);
|
||||
writer.close();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void writeImgTest() {
|
||||
ExcelWriter writer = ExcelUtil.getWriter(true);
|
||||
|
||||
File file = new File("C:\\Users\\zsz\\Desktop\\1.jpg");
|
||||
|
||||
writer.writeImg(file, 0, 0, 5, 10);
|
||||
|
||||
writer.flush(new File("C:\\Users\\zsz\\Desktop\\2.xlsx"));
|
||||
|
||||
writer.close();
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user