我已经实现了一个应用程序,可以使用相机捕获图像并将捕获的图像显示为新页面,但是我想将捕获的图像(例如:文档)显示为Pdf文件(可编辑)。
那么如何将我的图像(例如:文档)转换为pdf文件?
class DisplayPictureScreen extends StatelessWidget {
final String imagePath;
const DisplayPictureScreen({Key key, this.imagePath}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text('Display the Picture')),
body: Image.file(File(imagePath)),
);
}
}
答案 0 :(得分:1)
This flutter printing library讨论了To load an image from an ImageProvider:
,也许这可以满足您的要求,您可以在处理完图像后提取PDF