Git Product home page Git Product logo

Comments (8)

ThomasVuillaume avatar ThomasVuillaume commented on May 22, 2024

There's no "size" props, as the PDF is render in a canvas, and base its size on the viewport:

      const viewport = page.getViewport(adjustedScale, rotate);

If you want to adjust the size, use the "scale" props for that:

<PDF scale={0.8} ... />

from react-pdf-js.

guoyunhe avatar guoyunhe commented on May 22, 2024

Thanks for the answer.

Here is another question with scale. Because I don't know the original size of the canvas, how could I set a pixel size like 800px?

from react-pdf-js.

mikecousins avatar mikecousins commented on May 22, 2024

You'd just need to set the size of the parent properly. It will fill it's parent.

from react-pdf-js.

guoyunhe avatar guoyunhe commented on May 22, 2024

@mikecousins The width of canvas is inline style. So I have to set it with max-width: 100%; height: auto; and then it can fit its parents.

from react-pdf-js.

mikecousins avatar mikecousins commented on May 22, 2024

No, those are dynamic so it will always fill it's parent.

from react-pdf-js.

atermenji avatar atermenji commented on May 22, 2024

@mikecousins do you have an example of pdf component fitting it's parent? I can't make it work, because canvas style width and height attributes are being set in renderPdf function

from react-pdf-js.

GregTheGreek avatar GregTheGreek commented on May 22, 2024

@mikecousins I believe @atermenji is correct, it looks like the code sets the height/width without looking at the props or parent...

from react-pdf-js.

mikecousins avatar mikecousins commented on May 22, 2024

What code do you believe does that? All I can see is:

      canvas.style.width = `${viewport.width / dpiScale}px`;
      canvas.style.height = `${viewport.height / dpiScale}px`;
      canvas.height = viewport.height;
      canvas.width = viewport.width;

It seems to just be grabbing it's viewport and using that.

from react-pdf-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.