IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

 Delphi Discussion :

Unité Multitwain de David Nieves


Sujet :

Delphi

  1. #1
    Membre expérimenté
    Profil pro
    Inscrit en
    Janvier 2006
    Messages
    2 427
    Détails du profil
    Informations personnelles :
    Âge : 71
    Localisation : Belgique

    Informations forums :
    Inscription : Janvier 2006
    Messages : 2 427
    Points : 1 326
    Points
    1 326
    Par défaut Unité Multitwain de David Nieves
    Bonjour à toutes et à tous,

    Beaucoup d'entres nous utilisons l'unité Multitwain de David Nieves.

    Malheureusement cette unité présente un bug lors du choix du scanner ou de l'imprimante.

    En effet il est impossible d'utiliser le bouton "Annuler" présent sur la boite de dialogue, le scan se fait quand même.

    Apparement le bouton cancel n'a pas d'effet.

    Voici le code de l'unité :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
     
    unit MultiTWAIN;
     
    interface
     
    uses
      Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
      StdCtrls, ExtCtrls, CommDlg;
     
    // Some of the functions in EZTWAIN require unsigned integers.  However,
    // it was not until the recent release of Delphi 4 that Inprise implemented
    // this; they did so with LongWord/Cardinal.  As far as D2 and D3 go, this
    // unit will attempt to substitute an Integer instead.  I don't know if it'll
    // work though!
     
    type
    {$IFDEF VER100}
       UnsignedInt32 = Cardinal;
    {$ELSE}
       UnsignedInt32 = Integer;
    {$ENDIF}
       hDibCallbackProc = procedure(curdib: THandle; n: Integer); stdcall;
     
    const
       TWAIN_BW=1;	  { 1-bit per pixel, B&W 	 (== TWPT_BW) }
       TWAIN_GRAY=2;	  { 1,4, or 8-bit grayscale  (== TWPT_GRAY) }
       TWAIN_RGB=4;	  { 24-bit RGB color         (== TWPT_RGB) }
       TWAIN_PALETTE=8; { 1,4, or 8-bit palette    (== TWPT_PALETTE) }
       TWAIN_ANYTYPE=0; { any of the above }
     
       TWAIN_PRESESSION=1;        {	source manager not loaded }
       TWAIN_SM_LOADED=2;	      { source manager loaded }
       TWAIN_SM_OPEN=3;           { source manager open }
       TWAIN_SOURCE_OPEN=4;       { source open but not enabled }
       TWAIN_SOURCE_ENABLED=5;    { source enabled to acquire }
       TWAIN_TRANSFER_READY=6;    { image ready to transfer }
       TWAIN_TRANSFERRING=7;	  { image in transit }
     
       TWUN_INCHES=0;
       TWUN_CENTIMETERS=1;
       TWUN_PICAS=2;
       TWUN_POINTS=3;
       TWUN_TWIPS=4;
       TWUN_PIXELS=5;
     
    {$L eztwain.obj}
    function TWAIN_SelectImageSource(hwnd: HWND): Integer; stdcall; external;
    function TWAIN_AcquireNative(hwnd: HWND; pixmask: Integer): HBitmap; stdcall; external;
    procedure TWAIN_FreeNative(hDIB: HBitmap); stdcall external;
    function TWAIN_AcquireToClipboard(hwndApp: HWND; wPixTypes: UnsignedInt32): Integer; stdcall; external;
    function TWAIN_AcquireToFilename(hWndApp: HWND; pszFile: PChar): Integer; stdcall; external;
    function TWAIN_IsAvailable: Integer; stdcall; external;
    function TWAIN_EasyVersion: Integer; stdcall; external;
    function TWAIN_State: Integer; stdcall; external;
     
    // Added by DSN 7/98, this allows the user to specify an
    // optional callback function to be called each time a new image comes
    // in.  This can be a potentially powerful way to increase the primary
    // application's efficiency, because upon receipt of an hdib the app
    // could start a background thread to begin processing the images as
    // needed.  Why bother with this?  Because on my Pentium 150, the Windows
    // NT task monitor indicates that when I download images at 112kbps that
    // I'm only using 15% of the processor's power, and the remaining 85% of
    // the time it is idle!  It's silly to wait to begin processing because
    // there's so much untapped processing capacity here.
     
    procedure TWAIN_RegisterCallback(fxn: hDibCallbackProc); stdcall; external;
    procedure TWAIN_UnRegisterCallback; stdcall; external;
    // the next three functions were added by DSN to manage acquisition of multiple
    // images.  The first, TWAIN_CleadDibList, is called automatically by
    // TWAIN_AcquireNative (and, hence, the other Acquire functions).
    // TWAIN_GetNumDibs returns the number of images available.
    // Finally, TWAIN_GetDib retrieves a specific dib from the list.  Note that
    // the first dib corresponds to n = 0.
    // ALSO NOTE: the maximum number of dibs that can be scanned in is 999
    // This value may easily be expanded by changing the MAX_IMAGES constant
    // in the C code.
     
    procedure TWAIN_ClearDibList; stdcall; external;
    function TWAIN_GetNumDibs: Integer; stdcall; external;
    function TWAIN_GetDib(n: Integer): THandle; stdcall; external;
     
    function TWAIN_DibDepth(hDib: HBitmap): Integer; stdcall; external;
    function TWAIN_DibWidth(hDib: HBitmap): Integer; stdcall; external;
    function TWAIN_DibHeight(hDib: HBitmap): Integer; stdcall; external;
    function TWAIN_DibNumColors(hDib: HBitmap): Integer; stdcall; external;
    function TWAIN_CreateDibPalette(hdib: HBitmap): Integer; stdcall; external;  // HANDLE & HPALETTE, respectively
    procedure TWAIN_DrawDibToDC(
    		hDC: HDC;
    		dx, dy, w, h: Integer;
    		hDib: HBitmap;
    		sx, sy: Integer
    		); stdcall; external;
    function TWAIN_WriteNativeToFilename(hdib: hBitmap; pszFile: PChar): Integer;  stdcall; external;
    function TWAIN_WriteNativeToFile(hdib: HBitmap; fh: Integer): Integer; stdcall; external;
    function TWAIN_LoadNativeFromFilename(pszFile: PChar): HBitmap; stdcall; external;
    function TWAIN_LoadNativeFromFile(fh: Integer): HBitmap;  stdcall; external;
    procedure TWAIN_RegisterApp( nMajorNum,nMinorNum: integer;
                                 nLanguage: integer;
                                 nCountry: integer;
                                 lpszVersion: PChar;
                                 lpszMfg: PChar;
                                 lpszFamily: PChar;
                                 lpszProduct: PChar); stdcall; external;
    procedure TWAIN_SetHideUI(fHide: Integer); stdcall; external;
    function TWAIN_GetHideUI: Integer; stdcall; external;
    function TWAIN_GetResultCode: UnsignedInt32; stdcall; external;
    function TWAIN_GetConditionCode: UnsignedInt32; stdcall; external;
    function TWAIN_LoadSourceManager: Integer; stdcall; external;
    function TWAIN_OpenSourceManager(hwnd: HWND): Integer; stdcall; external;
    function TWAIN_OpenDefaultSource: Integer; stdcall; external;
    function TWAIN_EnableSource(hwnd: hWnd): Integer; stdcall; external;
    function TWAIN_DisableSource: Integer; stdcall; external;
    function TWAIN_CloseSource: Integer; stdcall; external;
    function TWAIN_CloseSourceManager(hWnd: HWND): Integer; stdcall; external;
    function TWAIN_UnloadSourceManager: Integer; stdcall; external;
    function TWAIN_MessageHook(lpmsg: PMSG): Integer; stdcall; external;
    procedure TWAIN_ModalEventLoop; stdcall; external;
    procedure TWAIN_NativeXferGetAll(psmg: PMSG); stdcall; external; // for multiple xfers
    function TWAIN_AbortAllPendingXfers: Integer; stdcall; external;
    function TWAIN_WriteDibToFile(lpDIB: PBITMAPINFOHEADER; fh: Integer): Integer; stdcall; external;
    function TWAIN_NegotiateXferCount(nXfers: Integer): Integer; stdcall; external;
    function TWAIN_NegotiatePixelTypes(wPixTypes: UnsignedInt32): Integer; stdcall; external;
    function TWAIN_GetCurrentUnits: Integer; stdcall; external;
    function TWAIN_SetCurrentUnits(nUnits: Integer): Integer; stdcall; external;
    function TWAIN_GetBitDepth: Integer; stdcall; external;
    function TWAIN_SetBitDepth(nBits: Integer): Integer; stdcall; external;
    function TWAIN_GetPixelType: Integer; stdcall; external;
    function TWAIN_SetCurrentPixelType(nPixType: Integer): Integer; stdcall; external;
    function TWAIN_GetCurrentResolution: double;   // implemented below
    function TWAIN_SetCurrentResolution(dRes: double): Integer;  // implemented below
    function TWAIN_SetCapOneValue(Cap: UnsignedInt32; ItemType: UnsignedInt32; ItemVal: LongInt): Integer; stdcall; external;
    function TWAIN_GetCapCurrent(Cap: UnsignedInt32; ItemType: UnsignedInt32; pVal: Pointer): Integer; stdcall; external;
    function TWAIN_DS(DG: LongInt; DAT: UnsignedInt32; MSG: UnsignedInt32; pData: Pointer): Integer; stdcall; external;
    function TWAIN_Mgr(DG: LongInt; DAT: UnsignedInt32; MSG: UnsignedInt32; pData: Pointer): Integer; stdcall; external;
     
    procedure CopyDIBIntoImage(hDIB: THandle; Image: TImage);
     
    implementation
     
    { The procedures implemented below are the ones which use floating point numbers }
     
    const
       ICAP_XRESOLUTION = $1118;
       ICAP_PIXELTYPE = $0101;
       TWTY_FIX32 = $0007;
       TWTY_UINT16 = $0004;
     
    type
       TW_FIX32 = record
          Whole: SmallInt;
          Frac: Word;
       end;
     
    function ToFix32(r: Double): UnsignedInt32;
    var
       fix: TW_FIX32;
       v: Integer;
    begin
       v := Round(r * 65536.0 + 0.5);
       fix.Whole := ShortInt(V shr 16);
       fix.Frac := Word (v and $ffff);
       ToFix32 := UnsignedInt32(fix);
    end;
     
    function Fix32ToFloat(fix: TW_FIX32): double;
    var
       v: Integer;
    begin
       v := (Integer(fix.Whole) shl 16) or (UnsignedInt32(fix.frac) and $ffff);
       Fix32ToFloat := v / 65536.0;
    end;
     
    function TWAIN_GetCurrentResolution: double;
    var
       res: TW_FIX32;
    begin
       TWAIN_GetCapCurrent(ICAP_XRESOLUTION, TWTY_FIX32, @res);
       TWAIN_GetCurrentResolution := Fix32ToFloat(res);
    end;
     
    function TWAIN_SetCurrentResolution(dRes: double): Integer;
    begin
       TWAIN_SetCurrentResolution := TWAIN_SetCapOneValue(ICAP_XRESOLUTION, TWTY_FIX32, ToFix32(dRes));
    end;
     
    (*************************************************)
     
    procedure CopyDIBIntoImage(hDIB: THandle; Image: TImage);
    var
       DibW, DibH, oldw, oldh: integer;
    begin
       Oldw := Image.Width;
       Oldh := Image.Height;
       DibW := TWAIN_DibWidth(hDib);
       DibH := TWAIN_DibHeight(hDib);
       Image.Width := DibW;  // temporarily enlarge image to ensure the whole
       Image.Height := DibH; // DIB gets copied
       TWAIN_DrawDibToDC(Image.Canvas.Handle, 0, 0, DibW, DibH, hDIB, 0, 0);
       Image.Width := oldw;
       Image.Height := oldh;
    end;
     
    {   The function below was adapted from code on www.codeguru.com.  After
       I translated it from C++ I realized I wouldn't need it; however, I've
       left it in here in case anyone else finds it useful.  NOTE: I never
       tested to make sure my translation was accurate, so be careful! -- DSN 7/98
     
    function DIBToDDB(hDIB: THandle): HBitmap;
    var
       lpbi: PBitmapInfoHeader;
       hbm: HBitmap;
       Pal, OldPal: HPalette;
       dc: HDC;
       nSize: UnsignedInt32;
       pLP: PLogPalette;
       nColors, i: Integer;
       lpDIBBits: Pointer;
       bmInfo: PBitmapInfo;
     
       bmicoloraddr: PChar;
       bmisum: PChar;
       bmisumncolor: PChar;
     
    begin
       if (hDIB = 0) then
          begin
             DIBToDDB := 0;
             exit;
          end;
       dc := GetDC(0);
       pal := 0;
     
       lpbi := PBitmapInfoHeader(hDIB);
       if (lpbi^.biClrUsed > 0) then
          nColors := lpbi^.biClrUsed
       else nColors := 1 shl lpbi^.biBitCount;
     
       bmicoloraddr := PChar(@(bmInfo^.bmiColors));
       bmiSum := bmiColorAddr + (bmInfo^.bmiHeader.biClrUsed * sizeof(DWORD));
       if bmInfo^.bmiHeader.biCompression = BI_BITFIELDS then
          bmiSum := bmiSum + (3 * sizeof(DWORD));
       bmisumncolor := bmiColorAddr + (nColors * sizeof(DWORD));
     
       if bmInfo^.bmiHeader.biBitCount > 8 then
          lpDIBBits := Pointer(bmiSum)
       else lpDIBBits := Pointer(bmisumncolor);
     
       if (nColors <= 256 and (GetDeviceCaps(dc, RASTERCAPS) and RC_PALETTE)) then
          begin    // Create and select a logical palette if needed
             nSize := sizeof(TLogPalette) + (sizeof(TPaletteEntry) * nColors);
             GetMem(pLP, nSize);
             pLP^.palVersion := $0300;
             pLP^.palNumEntries := ncolors;
             for i := 0 to nColors do
                begin
                   pLP^.palPalEntry[i].peRed := bmInfo.bmiColors[i].rgbRed;
                   pLP^.palPalEntry[i].peGreen := bmInfo.bmiColors[i].rgbGreen;
                   pLP^.palPalEntry[i].peBlue := bmInfo.bmiColors[i].rgbBlue;
                   pLP^.palPalEntry[i].peFlags := 0;
                end;
             pal := CreatePalette(pLP^);
             FreeMem(pLP);
             OldPal := SelectPalette(dc, pal, False);// select and realize the palette
             RealizePalette(dc);
          end;
       hbm := CreateDIBitmap(dc,
                             (PBitmapInfoHeader(lpbi))^,
                             LongInt(CBM_INIT),
                             lpDIBBits,
                             (PBitmapInfo(lpbi))^,
                             DIB_RGB_COLORS);
       if pal <> 0 then
          SelectPalette(dc, Oldpal, False);
       ReleaseDC(0, dc);
       DIBToDDB := hbm;
    end;}
     
    end.
    Y a t'il une bonne âme qui se sent capable de résoudre ce problème.

    Merci.

    @+,

    Cincap

  2. #2
    Membre expérimenté
    Profil pro
    Inscrit en
    Janvier 2006
    Messages
    2 427
    Détails du profil
    Informations personnelles :
    Âge : 71
    Localisation : Belgique

    Informations forums :
    Inscription : Janvier 2006
    Messages : 2 427
    Points : 1 326
    Points
    1 326
    Par défaut Désolé pour le dérangement
    Je pense avoir trouvé une petite solution sans toucher au code de l'unité.

    Merci à tous,

    @,

    Cincap

  3. #3
    Membre éclairé
    Profil pro
    Développeur Java
    Inscrit en
    Mars 2004
    Messages
    624
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : Développeur Java

    Informations forums :
    Inscription : Mars 2004
    Messages : 624
    Points : 681
    Points
    681
    Par défaut
    Il serait bien d'avoir la solution au cas où quelqu'un rencontrerais le même problème.

  4. #4
    Membre expérimenté
    Profil pro
    Inscrit en
    Janvier 2006
    Messages
    2 427
    Détails du profil
    Informations personnelles :
    Âge : 71
    Localisation : Belgique

    Informations forums :
    Inscription : Janvier 2006
    Messages : 2 427
    Points : 1 326
    Points
    1 326
    Par défaut Une solution bricolée mais qui fonctionne !
    Bonjour à toutes et à tous,

    @bubulemaster, voici ma solution :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    Var
    n : Integer;
    Begin
    n := TWAIN_SelectImageSource(0); //Affichage de la boite de dialogue de sélection de source
      if n < 0 then exit;
      if n > 0 then
      begin
    TWAIN_AcquireNative(0,0);
    ............
    @+,

    Cincap

  5. #5
    Expert éminent sénior
    Avatar de Jipété
    Profil pro
    Inscrit en
    Juillet 2006
    Messages
    10 730
    Détails du profil
    Informations personnelles :
    Localisation : France, Hérault (Languedoc Roussillon)

    Informations forums :
    Inscription : Juillet 2006
    Messages : 10 730
    Points : 15 132
    Points
    15 132
    Par défaut
    Yep !

    Elle sert à quoi, la ligne en rouge ?

    Parce que, logiquement,
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    Var
      n : Integer;
    Begin
      n := TWAIN_SelectImageSource(0); //Affichage de la boite de dialogue de sélection de source
      if n >= 0 then
      begin
        TWAIN_AcquireNative(0,0);
        //....
      end;
    end;
    ça, ça devrait fonctionner pareil, non ?
    Il a à vivre sa vie comme ça et il est mûr sur ce mur se creusant la tête : peutêtre qu'il peut être sûr, etc.
    Oui, je milite pour l'orthographe et le respect du trait d'union à l'impératif.
    Après avoir posté, relisez-vous ! Et en cas d'erreur ou d'oubli, il existe un bouton « Modifier », à utiliser sans modération
    On a des lois pour protéger les remboursements aux faiseurs d’argent. On n’en a pas pour empêcher un être humain de mourir de misère.
    Mes 2 cts,
    --
    jp

  6. #6
    Membre expérimenté
    Profil pro
    Inscrit en
    Janvier 2006
    Messages
    2 427
    Détails du profil
    Informations personnelles :
    Âge : 71
    Localisation : Belgique

    Informations forums :
    Inscription : Janvier 2006
    Messages : 2 427
    Points : 1 326
    Points
    1 326
    Par défaut Eh bien non !
    Bonjour à toutes et à tous,

    @ jipété, en effet, cela semble plus logique, mais dans ce cas, malgré l'appuis sur le bouton cancel, si le scan a été choisis, il fonctionne alors que dans ma solution, tu fermes la boite de dialogue.

    Tu comprends bien que j'ai essayé des tas de solutions pour ne pas toucher au code de l'unité Multitwain.

    Par contre, le code peut être adapté comme ceci :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    Var
    n : Integer;
    Begin
    n := TWAIN_SelectImageSource(0); //Affichage de la boite de dialogue de sélection de source
      
    if n < 0 then exit;
    
    if n >= 1 then
      begin
        TWAIN_AcquireNative(0,0);
        //....
      end;
    end;
    @+,

    Cincap

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 2
    Dernier message: 31/05/2003, 14h45
  2. Unité Delphi appelée à partir de JAVA
    Par babaahmed dans le forum API standards et tierces
    Réponses: 2
    Dernier message: 26/04/2003, 10h51
  3. [Turbo Pascal] [Windows XP] Problème avec l'unité GRAPH
    Par themofleur dans le forum Turbo Pascal
    Réponses: 22
    Dernier message: 29/03/2003, 22h43
  4. TTreeView -> Comment ouvrir une unité ?
    Par DaLove dans le forum C++Builder
    Réponses: 2
    Dernier message: 08/12/2002, 11h30
  5. Connaitre l'unitée à ajouter dans USES
    Par DelphiCool dans le forum Langage
    Réponses: 7
    Dernier message: 01/08/2002, 13h48

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo