getPage method
Gets the image bytes of the specified page from the document at the specified width and .
Implementation
@override
Future<Uint8List> getPage(
int pageNumber, int fullWidth, int fullHeight, String documentID) async {
if (_documentRepo[documentID] != null) {
PdfJsPage page = await promiseToFuture<PdfJsPage>(
_documentRepo[documentID]!.getPage(pageNumber));
PdfJsViewport viewport = page.getViewport(_settings);
return renderPage(page, viewport, fullWidth, fullHeight, documentID);
}
return Uint8List.fromList(<int>[0]);
}