When I try to convert pptx to html, it convert the images to base64 in html but I want the images to be stored on a local disk here is the sample code I am using to convert/
ByteArrayOutputStream stream = new ByteArrayO…...ByteArrayOutputStrea(); Presentation presentation = new Presentation(fileName);...; presentation.save(stream, SaveFormat.Html); presentation.dispose();...