sagarSaw
sagarSaw

Reputation: 99

How to scan documents in Flutter

How to scan documents in a flutter with crop and editing? I am working in an app which required documents scanning and creating a PDF file. I have come across only paid solution that satisfy the requirements and in other solution we have to individually click image crop and store using different library.

Is there any single open source library using which we can achieve this?

Upvotes: 3

Views: 3485

Answers (1)

Marcel Pater
Marcel Pater

Reputation: 174

I created a Flutter plugin for iOS and Android. Its based on VNDocumentCameraViewController and Intents and returns the cropped images. Feel free to contribute. https://pub.dev/packages/cunning_document_scanner

If you want to create PDFs, you can use another plugin after cropping. e.g. https://pub.dev/packages/pdf

Upvotes: 3

Related Questions