Skip to content
ComPDF
Guides

文档信息

文档信息

tsx
const info  = await pdfReaderRef.current?._pdfDocument.getInfo();
const title = info?.title;
const author = info?.author;
const subject = info?.subject;
const keywords = info?.keywords;
const creator = info?.creator;
const producer = info?.producer;
const creationDate = info?.creationDate;
const modDate = info?.modificationDate;

权限信息

tsx
const permissions = await pdfReaderRef.current?._pdfDocument.getPermissionsInfo();

页面信息

tsx
// 获取指定页面尺寸
const pageSize = await pdfReaderRef.current?._pdfDocument.getPageSize(0);