Aspose-Word Trial version :
I tried to convert a word document with code but it does not work : Only the first page is taken
for (int indexP = 0; indexP < doc.getPageCount(); indexP++) {
options.setPageIndex(indexP); // Only the first page is taken
doc.save(outStream, options);
…