DImuthuUpe / AndroidPdfViewer

Android view for displaying PDFs rendered with PdfiumAndroid
Apache License 2.0
8.13k stars 1.89k forks source link

zooming / Font size increase #1073

Open lallous34 opened 2 years ago

lallous34 commented 2 years ago

Instead of zooming the page and making text go out of the screen bounds, is there a way to increase text size instead? I know it may affect the page (make text bigger than fitting one page.) but it would be nice to make the text larger so that reader can just read what's in front of him without the need of scrolling horizontally to follow the line

vimalcvs commented 2 years ago
  pdfView = findViewById(R.id.pdfView);
    pdfView.setMinZoom(1f);
    pdfView.setMidZoom(2.5f);
    pdfView.setMaxZoom(10.0f);
piyushporiya5 commented 1 year ago

@lallous34 Do you manage to zoom only font, Not screen?