batchExportToPdf static method
Uint8List
batchExportToPdf({
- required List<
ScanResult> results, - String title = 'ScannerPro Batch Export',
- bool enableCompression = true,
- String? watermarkText,
Batch exports multiple scan results into a single multi-page PDF byte buffer.
Implementation
static Uint8List batchExportToPdf({
required List<ScanResult> results,
String title = 'ScannerPro Batch Export',
bool enableCompression = true,
String? watermarkText,
}) {
return PdfExporter.exportResultsToPdf(
results: results,
title: title,
enableCompression: enableCompression,
watermarkText: watermarkText,
);
}