2011-08-16 42 views
7

WIA Escaneo a través del alimentadorWIA Escaneo a través del alimentador

Aquí es mis propiedades del dispositivo:

Document Handling Select = 1 (2 is for flatbed, and 1 is for the feeder.) 

Aquí está mi artículo (página) propiedades:

Horizontal Resolution = 150 
Vertical Resolution = 150 
Horizontal Extent = 500 (I want to get it first to work, then I'll play with the extents.), 
Vertical Extent = 500 
Bits Per Pixel = 8 
Current Intent = 4 

tengo todo funcionando sin problemas si Establecí la "Selección de manejo de documentos" en "2". Cuando lo configuré en "1" y lo ejecuté, justo antes de decir item.Transfer() (o item.Transfer (bmp/​​jpeg/pngGuid)) recibo la excepción "El valor no está dentro del rango esperado".

Esto es tan molesto, ¿qué valor? Busqué en la red y solo pude encontrar un poco de información, pero no es de mucha ayuda.

+0

He jugado más con él, y me pareció que la única manera que podía usar el alimentador fue abriendo el diálogo común para pedir al "elemento". El método en el diálogo solicita un dispositivo. Establece las propiedades en el dispositivo y en el artículo. Eché un vistazo a las propiedades y parece lo mismo que en mis preguntas. Y funciona. Debe haber algo que no estoy viendo ... –

+0

Tengo el mismo problema. :-(Supongo que debe haber otra propiedad del dispositivo que deba modificarse. –

Respuesta

6

Creo que tiene que establecer la propiedad del dispositivo "Páginas" (ID 3096) de 0 a 1 para evitar la excepción. Me tomó algo de tiempo resolver esto. Finalmente, encontré esta propiedad comparando las propiedades del dispositivo antes y después de una llamada a CommonDialogClass.ShowSelectItems.

Aquí hay un código:

public enum DeviceDocumentHandling : int 
    { 
     Feeder = 1, 
     FlatBed = 2 
    } 

    const int DEVICE_PROPERTY_DOCUMENT_HANDLING_CAPABILITIES_ID = 3086; 
    const int DEVICE_PROPERTY_DOCUMENT_HANDLING_STATUS_ID = 3087; 
    const int DEVICE_PROPERTY_DOCUMENT_HANDLING_SELECT_ID = 3088; 
    const int DEVICE_PROPERTY_PAGES_ID = 3096; 

    public static Property FindProperty(WIA.Properties properties, 
             int propertyId) 
    { 
     foreach (Property property in properties) 
      if (property.PropertyID == propertyId) 
       return property; 
     return null; 
    } 

    public static void SetDeviceProperty(Device device, int propertyId, 
             object value) 
    { 
     Property property = FindProperty(device.Properties, propertyId); 
     if (property != null) 
      property.set_Value(value); 
    } 

    public static object GetDeviceProperty(Device device, int propertyId) 
    { 
     Property property = FindProperty(device.Properties, propertyId); 
     return property != null ? property.get_Value() : null; 
    } 

    public static void SelectDeviceDocumentHandling(Device device, 
           DeviceDocumentHandling handling) 
    { 
     int requested = (int)handling; 
     int supported = (int)GetDeviceProperty(device, 
       DEVICE_PROPERTY_DOCUMENT_HANDLING_CAPABILITIES_ID); 
     if ((requested & supported) != 0) 
     { 
      if ((requested & (int)DeviceDocumentHandling.Feeder) != 0) 
       SetDeviceProperty(device, DEVICE_PROPERTY_PAGES_ID, 1); 
      SetDeviceProperty(device, 
        DEVICE_PROPERTY_DOCUMENT_HANDLING_SELECT_ID, requested); 
     } 
    } 
Cuestiones relacionadas