首页 > 解决方案 > 我们可以使用颤振将PDF转换为图像以显示文件的缩略图吗?

问题描述

用例:为了在文件列表中显示 PDF 的缩略图。

问题 2:我们可以将 FPF 转换为图像以在列表中显示缩略图吗?

标签: htmlimagepdfflutterdart

解决方案


使用pdf_render图像插件。

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));

推荐阅读