I port my own app to read pdf files in android using mupdf, all is working fine here, but the text on the pages appear very small, so how I can resize the font or scale the view to be more readable for a myopic User?
Someone can help-me
I port my own app to read pdf files in android using mupdf, all is working fine here, but the text on the pages appear very small, so how I can resize the font or scale the view to be more readable for a myopic User?
Someone can help-me
mupdf has two versions, one is mini and the other is old.
the "old" has reflow function, which can enlarge font by zooming in with two fingers.
but i do not think it is perfect because the text is not justified, so the right margin is huge and ugly.
You just increase the scale level in MUPDF. private static final float MAX_SCALE = 10.0f;(RenderView.class), I hope its help you.its working in my app.