首页 > 解决方案 > 将 ReactNative 屏幕/视图导出为 PDF

问题描述

我有 ReactNative 应用程序。我可以将应用程序的主屏幕/视图保存为 PDF 或任何其他可打印文件格式吗?

标签: react-native

解决方案


@反应巴拉,

使用react-native-view-shot组件。

https://github.com/gre/react-native-view-shot

import RNViewShot from "react-native-view-shot";

RNViewShot.takeSnapshot(viewRef, {
  format: "jpeg",
  quality: 0.8
})
.then(
  uri => console.log("Image saved to", uri),
  error => console.error("Oops, snapshot failed", error)
);

你得到图像URI 之后

https://github.com/Anyline/react-native-image-to-pdf

使用此组件将图像转换为 pdf...


推荐阅读