exportPageImages method

List<Uint8List> exportPageImages()

Exports all processed page image byte buffers.

Implementation

List<Uint8List> exportPageImages() {
  return _pages.map((p) => p.processedBytes).toList();
}