We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using width/height or fit-parent on 1920/1080 screens, the quality of the PDF is degraded and becomes blurry.
Using the playground, you can reproduce using the following:
<script setup lang="ts"> import pdf14 from '@samples/issue126.pdf'; import { VuePDF, usePDF } from '@tato30/vue-pdf'; const { pdf } = usePDF(pdf14) </script> <template> <div> <VuePDF :pdf="pdf" :width="450" :height="250" /> </div> </template> <!-- OR --> <template> <div style="width: 450px; height: 250px;"> <VuePDF :pdf="pdf" fit-parent /> </div> </template>
Additional context
The text was updated successfully, but these errors were encountered:
I have been trying to reproduce this issue on different devices but I am getting a nice readable page in all cases.
What is the result if you run this command on the browser's console where you are trying?
Sorry, something went wrong.
No branches or pull requests
When using width/height or fit-parent on 1920/1080 screens, the quality of the PDF is degraded and becomes blurry.
Using the playground, you can reproduce using the following:
Additional context
The text was updated successfully, but these errors were encountered: