Joshua Rubin
Joshua Rubin
I don't believe this is an issue with pdfjs. if I uploaded my pdf to the pdfjs demo https://mozilla.github.io/pdf.js/web/viewer.html and the issue did not occur, also i can display the...
I implemented a Mutex approach like this and it solved all of the width issues ``` type PageProps = { pageNumber: number; pageLoadLock: Mutex scale: number; } export const PageWrapper:...
Manually rendering all of the pages sequentially with a mutex worked for me. I don't think this is a good solution though, so my ultimate solution was to just use...