diff --git a/components/Page.tsx b/components/Page.tsx index 5223fd6..436cf23 100644 --- a/components/Page.tsx +++ b/components/Page.tsx @@ -36,9 +36,6 @@ function Page(props: PageProps): JSX.Element { -
-
-
) diff --git a/src/process.ts b/src/process.ts index 5eb8eff..34253c1 100644 --- a/src/process.ts +++ b/src/process.ts @@ -42,7 +42,7 @@ export async function getPayloadBodyFromFile(file: File): Promise { async function getImageDataFromPdfPage(pdfPage: PDFPageProxy): Promise { - const pdfScale = 2; + const pdfScale = 4; const canvas = document.getElementById('canvas'); const canvasContext = canvas.getContext('2d'); @@ -61,7 +61,7 @@ async function getImageDataFromPdfPage(pdfPage: PDFPageProxy): Promise