1.我尝试使用此代码,但无法调整宽度
<Document
style={{width:"100px"}}
file="123.pdf"
onLoadSuccess={onDocumentLoadSuccess}
>
<Page pageNumber={pageNumber} />
</Document>
3条答案
按热度按时间mrphzbgm1#
style={{}}不起作用。react-pdf没有宽度属性。但有一个高度属性。我使用了它,并根据比例调整了宽度。它对我很有效。
htrmnn0y2#
根据文档https://react-pdf.org/components不支持样式,您需要为page组件设置样式
piah890a3#
您需要删除(px)keep作为一个数字或字符串没有px =〉宽度:“100”或宽度:100