sand 0.0.2
A D interface to sane (Scanner Access Now D)
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
SAND
Scanner Access Now D
SAND provides a D interface to the SANE (Scanner Access Now Easy) C API. The interface is designed to be easy to read and safe to use.
d
// Initialise sane interface
auto sane = new Sane();
// Find all devices
auto devices = sane.devices();
// List all options for a device
if(devices.length) {
auto options = devices[0].options;
foreach(option; options) {
writeln(option);
}
}
To test the code enable the "test" driver in /etc/sane.d/dll.conf (or system equivelent)
- Registered by Duncan
- 0.0.2 released 6 years ago
- dunkyp/sand
- BSD 3-clause
- Copyright © 2018, Duncan Paterson
- Authors:
- Dependencies:
- none
- Versions:
-
0.0.7 2018-Jul-30 0.0.6 2018-Jul-29 0.0.5 2018-Mar-21 0.0.4 2018-Mar-14 0.0.3 2018-Mar-13 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
32 downloads total
-
- Score:
- 0.1
- Short URL:
- sand.dub.pm