Twain scanner customizing for MVC

1.9k Views Asked by At

I am using http://www.codeproject.com/Articles/1376/NET-TWAIN-image-scanner and I am trying to adapt it to MVC. The problem is in this line of code

tw.Init(this.Handle);

this.Handle is a IntPtr, and I dont know how to change that to use in MVC.

tw.Init methods code:

public void Init( IntPtr hwndp )
{
      Finish();

TwRC rc = DSMparent( appid, IntPtr.Zero, TwDG.Control, TwDAT.Parent, TwMSG.OpenDSM, ref hwndp );           

if( rc == TwRC.Success )

        {

rc = DSMident( appid, IntPtr.Zero, TwDG.Control, TwDAT.Identity, TwMSG.GetDefault, srcds );

        if( rc == TwRC.Success )

            hwnd = hwndp;

        else

rc = DSMparent( appid, IntPtr.Zero, TwDG.Control, TwDAT.Parent, TwMSG.CloseDSM, ref hwndp );

        }

    }
1

There are 1 best solutions below

0
On

You can use a TWAIN plugin to control a scanner in your website. This article might help: http://www.codeproject.com/Articles/618514/Scan-and-Upload-Documents-in-ASP-NET-MVC-App-using