Replies: 3 comments
-
PdfPage.render function has parameters named final image = await page.render(
fullWidth: page.width * 2.0,
fullHeight: page.height * 2.0,
); |
Beta Was this translation helpful? Give feedback.
-
final pdfDocument = await PdfDocument.openAsset('assets/testing document.pdf');
could you tell me what the difference is between fullWidth, fullHeight, and width, height |
Beta Was this translation helpful? Give feedback.
-
The following figure illustrates the parameters: |
Beta Was this translation helpful? Give feedback.
-
I want to control pdf image quality increase decrease Like this:
render({
int x = 0,
int y = 0,
int? width,
int? height,
scale: 2.0,
});
is it possible?
Beta Was this translation helpful? Give feedback.
All reactions