build method
Get final image as PNG
Implementation
Uint8List build() {
final finalImage = copyCrop(
utilImage,
x: 0,
y: 0,
width: paperSize.width,
height: runningHeight,
);
return encodePng(finalImage);
}
Get final image as PNG
Uint8List build() {
final finalImage = copyCrop(
utilImage,
x: 0,
y: 0,
width: paperSize.width,
height: runningHeight,
);
return encodePng(finalImage);
}