monitorjbl / excel-streaming-reader

An easy-to-use implementation of a streaming Excel reader using Apache POI
Apache License 2.0
943 stars 342 forks source link

This cannot be used for reading which has image #249

Open me40269 opened 2 years ago

me40269 commented 2 years ago

If I have a file with image, then how do i read it in streaming using excel stream reader , I noticed that @Override public Drawing createDrawingPatriarch() { throw new UnsupportedOperationException(); } is there any reason to make these unsupported.

pjfanning commented 2 years ago

This lib is for reading xlsx files, not for creating them. createDrawingPatriarch is not a read method. My fork of this project supports getDrawingPatriarch.