Tagged Questions
The sane tag has no wiki summary.
3
votes
2answers
139 views
prepopulate MVC Models with IOC - an alternative to caching?
I'm considering strategies for a simple-minded CMS implementation for an ASP.NET MVC site. The simple-minded part is that I've abstracted the values used in various partial views, all of which are ...
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
189 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 ...
0
votes
2answers
88 views
Manipulating the address of a variable to store a smaller type?
This is what I get for pampering myself with high-level programming languages.
I have a function which writes a 32-bit value to a buffer, and a uint64_t on the stack. Is the following code a sane ...