I am converting text to pdf using aspose-words(Java)
I also want to increase the page size,which i am doing using following call.
Document document = new Document(filePath);
DocumentBuilder builder = new DocumentBuilder(document);
builder.getPageSetup().setPageWidth(Double.parseDouble(pageWidth));
builder.getPageSetup().setPageHeight(Double.parseDouble(pageWidth));
But the font size is not scaling up with the page size what can be done.
This query is on the similar line as following query posted by me: