scan2drive is a Go program (with a web interface) for scanning, converting and uploading physical documents to Google Drive. The author runs scan2drive as a gokrazy appliance on a Raspberry Pi 4.
During the conversion step, scan2drive skips empty pages and converts the rest from multi-megabyte JPEGs into a kilobyte-sized PDF. This allows you to use Google Drive’s OCR-based full text search.
Both the originals and the converted PDF are uploaded to Google Drive, so that you can enjoy full text search but still have the full-quality originals just in case.
In comparison to the native Google Drive connectivity which some document scanner vendors provide, scan2drive has these main advantages:
- scan2drive integrates with the scan button of your document scanner. You press one button and your documents will end up on Google Drive. Other solutions require you to use a mobile app or software on your PC.
- scan2drive is self-hosted and depends only on Google Drive being available, not the scanner vendor’s cloud integration service. Many vendors send documents into their own clouds and then to Google Drive. You are welcome to archive the scan directory of scan2drive to other places you see fit, in case there are any issues with Google Drive.
- scan2drive converts the scanned documents into a PDF which is small enough to be full text indexed by Google Drive, but it also retains the original JPEGs in case you need them.
Currently, there are a number of open issues and not all functionality might work well. Use at your own risk!
The project vision is described above. Notably, scan2drive is already feature complete. We don’t want to add any more features to it than it currently has.
scan2drive was published in the hope that it could be useful to others, but the main author has no time to create an active community around it or accept contributions in a timely manner. All support, development and bug fixes are strictly best effort.
- scan2drive can scan from any AirScan-compatible scanner. This means any scanner that is marketed as compatible with Apple iPhones should work. You can find a list of tested devices at https://github.com/stapelberg/airscan#tested-devices
- Fujitsu ScanSnap iX500 connected via USB
The scans directory (-scans_dir
flag) contains the following files:
<sub>/
is the per-user directory under which scans are placed2016-05-09-21:05:02+0200/
is a directory for an individual scanpage*.jpg
are the raw pages obtained by callingscanimage
scan.pdf
is the converted PDFthumb.png
is the first page of the converted PDF for display in the UICOMPLETE.*
are empty files recording which individual processing steps are done
Any file in the scans directory can be deleted at will, with the caveat that
deleting scans before the COMPLETE.uploadoriginals
file is present will
result in that scan being irrevocably lost.
The state directory (-state_dir
flag) contains the following files:
cookies.key
is a secret key with which cookies are encryptedsessions/
contains session contentsusers/
is a directory containing per-user datausers/<sub>/
is a directory for an individual userdrive_folder.json
contains information about the selected destination Google Drive folder. In case this file is deleted, the user will need to re-select the destination folder and scans cannot be uploaded until a new destination folder has been selected.token.json
contains the offline OAuth token for accessing Google Drive on behalf of the user. In case this file is deleted, the user will need to re-login. In case this file is leaked, the user should revoke the token
First, follow the gokrazy quickstart instructions.
Then, add github.com/stapelberg/scan2drive/cmd/scan2drive
package to your
gokrazy instance:
gok -i scanner add github.com/stapelberg/scan2drive/cmd/scan2drive
Deploy your gokrazy instance to your Raspberry Pi and connect a supported scanner.
You should be able to access the gokrazy web interface at the URL which the
gok
tool printed. To access the scan2drive web interface, switch to port 7120.
For setting up Google OAuth, you’ll need to access scan2drive via a domain name with a valid TLS certificate. scan2drive has builtin support to obtain free certificates from Let’s Encrypt, but you do need to make your scan2drive installation reachable over the internet for this to work:
- If your provider offers IPv6, set your domain name’s AAAA record to point to your Raspberry Pi’s internet-reachable IPv6 address.
- If you don’t have IPv6 available, set up a port forwarding on your router and use Dynamic DNS to make your domain name point to your current IP address.
libjpeg-turbo is a JPEG image codec that uses SIMD instructions (Arm Neon in case of the Raspberry Pi) to accelerate baseline JPEG compression.
scan2drive can optionally make use of libjpeg-turbo (via the turbojpeg
build
tag), but doesn’t include it by default because of the cumbersome setup.
Using libjpeg-turbo on gokrazy requires a few extra setup steps. Because gokrazy does not include a C runtime environment (neither libc nor a dynamic linker), we need to link scan2drive statically.
-
Install the gcc cross compiler, for example on Debian:
apt install crossbuild-essential-arm64
-
Enable cgo for your gokrazy instance. This means setting the following environment variables when calling
gok
(for example in your “gokline”, see gokrazy → Automation):export CC=aarch64-linux-gnu-gcc export CGO_ENABLED=1
-
Enable static linking and the
turbojpeg
build tag for scan2drive in your instance config (usegok edit
):
{
"Hostname": "scanner",
"Packages": [
"github.com/gokrazy/fbstatus",
"github.com/gokrazy/hello",
"github.com/gokrazy/serial-busybox",
"github.com/gokrazy/breakglass",
"github.com/stapelberg/scan2drive/cmd/scan2drive"
],
"PackageConfig": {
"github.com/stapelberg/scan2drive/cmd/scan2drive": {
"GoBuildFlags": [
"-ldflags=-linkmode external -extldflags -static"
],
"GoBuildTags": [
"turbojpeg"
]
}
}
}