Mohamed Rifni

Results 17 comments of Mohamed Rifni

Yes, PDF to html and then html to epub3. There are tools which converts from PDF to epub3 but it isn't perfect

@stephengaito I used the CLI `pdf2htmlEX --zoom 1.3 Mystical\ Poems\ of\ Rumi\ -\ words\ cascade.pdf` to convert a sample PDF to html and then [pandoc](https://pandoc.org/MANUAL.html) `pandoc -f html -t epub3...

I have seen one of your comment in the old repo as well. Good work. Is there any possibilities to have a reflow layout instead of a fixed layout ?

any updates on this ?

any updates on this ?

you dont have to, its already done by some https://github.com/Mantano/mp_readium

does anyone know what the issue is ?

> I can't reproduce any of the bugs on a (real) Pixel 3a. Did you reproduce on a device too? You didn't indicate the Android version as well. > >...

Have you seen this https://stackoverflow.com/questions/9287664/why-cant-a-randomaccessfile-be-casted-to-inputstream ``` // STEP 1: Create random access file read-only RandomAccessFile raf = new RandomAccessFile("/text.txt", "r"); // STEP 2: Use Channels to convert to InputStream InputStream...

``` fun Context.startForegroundServiceCompat(intent: Intent) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { startForegroundService(intent) } else { startService(intent) } } ``` where do you want me to put the above code @mickael-menu ?...