Basic Univers
Global *TWAIN_IsAvailable
Global *TWAIN_SelectImageSource
Global *TWAIN_AcquireToClipboard
Global *TWAIN_AcquireNative
Global *TWAIN_WriteNativeToFilename
Global *TWAIN_FreeNative
Procedure Twain_Init()
OpenLibrary(10, "web_cam.DLL")
*TWAIN_IsAvailable = IsFunction(10, "TWAIN_IsAvailable")
*TWAIN_SelectImageSource = IsFunction(10, "TWAIN_SelectImageSource")
*TWAIN_AcquireToClipboard = IsFunction(10, "TWAIN_AcquireToClipboard")
*TWAIN_AcquireNative = IsFunction(10, "TWAIN_AcquireNative")
*TWAIN_WriteNativeToFilename = IsFunction(10, "TWAIN_WriteNativeToFilename")
*TWAIN_FreeNative = IsFunction(10, "TWAIN_FreeNative")
EndProcedure
Procedure.l Twain_ScannCheck()
value.l = CallFunctionFast(*TWAIN_IsAvailable)
ProcedureReturn value
EndProcedure
Procedure.l Twain_scanchoice(hwnd)
value.l = CallFunctionFast(*TWAIN_SelectImageSource, hwnd)
ProcedureReturn value
EndProcedure
Procedure Twain_ScannToFile(datei.s)
bmp.l = CallFunctionFast(*TWAIN_AcquireNative, 0, 0)
CallFunctionFast(*TWAIN_WriteNativeToFilename, bmp, datei)
CallFunctionFast(*TWAIN_FreeNative, bmp)
ProcedureReturn 0
EndProcedure
Procedure TWAIN_ScannToClip()
CallFunctionFast(*TWAIN_AcquireToClipboard, 0, 0)
ProcedureReturn 0
EndProcedure
WindowID = OpenWindow(0, 700, 10, 320, 400, #PB_Window_SystemMenu, "Test")
CreateGadgetList(WindowID())
Twain_Init()
If Twain_ScannCheck() = 1
Twain_scanchoice(WindowID)
Twain_ScannToFile("scantest.bmp")
EndIf
Repeat
eventID.l = WaitWindowEvent()
Until EventID = #PB_EventCloseWindow