I'm converting doc file to jpeg-svg &pdf

coverted files should have good image qulity & resolution can u give me a detailed example in detail??

Hi Bharathkumar,

Thanks for your inquiry. Please use the following code example to achieve your requirements.

Document doc = new Document(MyDir + "in.docx");
ImageSaveOptions options = new ImageSaveOptions(SaveFormat.JPEG);
options.setPageIndex(0);
options.setPageCount(1);
options.setResolution(300);
doc.save(MyDir + "Out.jpg", options);
PdfSaveOptions pdfoptions = new PdfSaveOptions();
pdfoptions.getDownsampleOptions().setDownsampleImages(false);
pdfoptions.getDownsampleOptions().setResolution(300);
doc.save(MyDir + "Out.pdf", pdfoptions);

Please read about PdfSaveOptions and ImageSaveOptions from here:
https://reference.aspose.com/words/java/com.aspose.words/PdfSaveOptions
https://reference.aspose.com/words/java/com.aspose.words/ImageSaveOptions