Tagged Questions

1
vote
1answer
2k views

Using Python's ctypes to pass/read a parameter declared as “struct_name *** param_name”?

I am trying to use Python's ctypes library to access some methods in the scanning library SANE. This is my first experience with ctypes and the first time I have had to deal with C datatypes in over ...
0
votes
1answer
25 views

PIL SANE interface: where can I find it?

Apparently PIL includes a SANE (Scanner Access Now Easy) interface - I'm looking at code right now that does import sane where sane is provided by PIL. I've installed PIL under both OS X and ...
0
votes
1answer
196 views

Create a 16 Bit TIFF image from a Python string

I need to use scanner in 16 bit depth and color mode, so i modified python-imaging-sane (that doesn't support RGB tiff with 16 bit depth) to receive from a scanner (epson v500) an image in a Python ...