Use-Case: In order to show thumbnail of the PDF in file list.
Question 2: Can we convert FPF to image to show thumbnail in the list?
Using pdf_render and image plugins.
import 'package:pdf_render/pdf_render.dart';
import 'package:image/image.dart' as imglib;
final doc = await PdfDocument.openFile('abc.pdf');
final pages = doc.pageCount;
List<imglib.Image> images = [];
// get images from all the pages
for (int i = 1; i <= pages; i++) {
var page = await doc.getPage(i);
var imgPDF = await page.render();
var img = await imgPDF.createImageDetached();
var imgBytes = await img.toByteData(format: ImageByteFormat.png);
var libImage = imglib.decodeImage(imgBytes.buffer
.asUint8List(imgBytes.offsetInBytes, imgBytes.lengthInBytes));
images.add(libImage);
}
// stitch images
int totalHeight = 0;
images.forEach((e) {
totalHeight += e.height;
});
int totalWidth = 0;
images.forEach((element) {
totalWidth = totalWidth < element.width ? element.width : totalWidth;
});
final mergedImage = imglib.Image(totalWidth, totalHeight);
int mergedHeight = 0;
images.forEach((element) {
imglib.copyInto(mergedImage, element, dstX: 0, dstY: mergedHeight, blend: false);
mergedHeight += element.height;
});
// Save image as a file
final documentDirectory = await getExternalStorageDirectory();
File imgFile = new File('${documentDirectory.path}/abc.jpg');
new File(imgFile.path).writeAsBytes(imglib.encodeJpg(mergedImage));
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With