Is there a way to generate thumbnails? #84
Unanswered
jayanthymohit6
asked this question in
Q&A
Replies: 1 comment
-
Yes, but it's a method of the DjVuPage class. For example: const doc = new DjVu.Document(arrayBuffer);
const page = await doc.getPage(1);
const pngObject = await page.createPngObjectUrl(); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
const docDjvu = new DjVu.Document(xhr.response);
I did try to create a png but could'nt find the createPngObjectUrl method .Is there any way we can generate pngs?
Beta Was this translation helpful? Give feedback.
All reactions