I am using example of conversion from pptx
to svg
. I took the code from
PPTX2SVG
And added dependencies to my gradle
application
compile "org.apache.poi:poi:$apachePoiVersion"
compile "org.apache.poi:poi-ooxml:$apachePoiVersion"
compile "org.apache.poi:poi-ooxml-schemas:$apachePoiVersion"
compile "org.apache.xmlgraphics:batik-svggen:$apacheBatikVersion"
compile "org.apache.xmlgraphics:batik-transcoder:$apacheBatikVersion"
compile "org.apache.xmlgraphics:batik-svg-dom:$apacheBatikVersion"
However it is unable to resolve classes XSLFImageRendener
and XSLFRenderingHint
.
What dependencies are missing? As there is no imports in the example code I assume that it should be in org.apache.poi.xslf.usermodel
package
I am using poi=3.16
and batik=1.9