zzhujing opened a new issue, #778: URL: https://github.com/apache/fesod/issues/778
### Search before asking - [x] I searched in the [issues](https://github.com/apache/fesod/issues) and found nothing similar. ### Fesod version fastexcel 1.3.0 ### JDK version graalvm 17 ### Operating system macOs15.6.1 ### Steps To Reproduce ```java public static void main(String[] args) throws IOException { var file = new File("/tmp/feishu/test.jpg"); var bytes = FileUtils.readFileToByteArray(file); var list = new ArrayList<ImageDemoData>(); var pic = new ImageDemoData(); pic.setByteArray(bytes); list.add(pic); FastExcel.write("/tmp/feishu/test.xlsx", ImageDemoData.class) .sheet() .doWrite(list); } @Getter @Setter @EqualsAndHashCode @ContentRowHeight(100) @ColumnWidth(25) public class ImageDemoData { private byte[] byteArray; } ``` my pom.xml ```xml <dependency> <groupId>cn.idev.excel</groupId> <artifactId>fastexcel</artifactId> <version>1.3.0</version> </dependency> ``` 导出后图片不能正常加载 <img width="716" height="610" alt="Image" src="https://github.com/user-attachments/assets/daacd451-c01a-4e53-8870-b80586e420b4" /> ### Current Behavior 导出图片加载失败 ### Expected Behavior who can help me? ### Anything else? _No response_ ### Are you willing to submit a PR? - [ ] I'm willing to submit a PR! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
