Click here to Skip to main content
15,898,010 members
Everything / WIA

WIA

WIA

Great Reads

by Rachel Jia
Get the solution to integrate Image Grab from webcams in a .NET application. Achieve the functionality in just a few lines of code.
by Dynamsoft
Control Scanners & Webcams in JavaScript.
by Dynamsoft
Control web cameras or the built-in laptop webcams inside IE, Firefox and Chrome with JavaScript.
by Dynamsoft
OCR Documents in .NET.

Latest Articles

by Dynamsoft
Scan and Save Images to a Database in C# Using Dynamic .NET TWAIN
by Dynamsoft
This article will show you how to decode barcodes from an image captured or scanned in a web application with the help of ImageCapture Suite.
by Dynamsoft
The article will show you how to develop a cross-platform document imaging solution that works with all mainstream browsers by using ImageCapture Suite.
by Dynamsoft
The article will show you how to increase the efficiency of image uploading/downloading by embedding ImageCapture Suite.

All Articles

Sort by Score

WIA 

6 Nov 2012 by Rachel Jia
Get the solution to integrate Image Grab from webcams in a .NET application. Achieve the functionality in just a few lines of code.
30 Nov 2012 by sahabiswarup
I am trying to develop a desktop application from which image can be scanned if scanner is connected with the pc and that will display in the picturebox control.using WIA dll i am able to scan image from an external device(scanner) but it automatically saves default picture folder.Can...
30 Nov 2012 by sahabiswarup
private void button2_Click(object sender, EventArgs e){ const string wiaFormatJPEG = "{B96B3CAE-0728-11D3-9D7B-0000F81EF32E}"; CommonDialogClass wiaDiag = new CommonDialogClass(); WIA.ImageFile wiaImage = null; wiaImage = wiaDiag.ShowAcquireImage( ...
11 Jan 2013 by Dynamsoft
Control Scanners & Webcams in JavaScript.
21 Jan 2013 by Dynamsoft
Control web cameras or the built-in laptop webcams inside IE, Firefox and Chrome with JavaScript.
21 Jan 2013 by Dynamsoft
22 Jan 2013 by merousoft
hi every on i'm stuckin the process of acquiring image from scanner i was able to extract information from IWiaItem and and get a WIA_DATA_TRANSFER_INFO but the problem is that i want to save this variable in a true image i don't know how to do it may be i can use a Stream or...
15 Mar 2013 by Dynamsoft
The article will show you how to increase the efficiency of image uploading/downloading by embedding ImageCapture Suite.
23 May 2013 by Dynamsoft
The article will show you how to develop a cross-platform document imaging solution that works with all mainstream browsers by using ImageCapture Suite.
3 Jun 2013 by Dynamsoft
This article will show you how to decode barcodes from an image captured or scanned in a web application with the help of ImageCapture Suite.
11 Jul 2013 by Fahad Murtaza
I have developed a window application using c# in windows 7.My application is scanning the images from the scanner and showing it on picture box.It is working fine on my machine.I have created the package and installed it on client's system who is using windows XP and when I click on my...
12 Sep 2013 by Dynamsoft
Scan and Save Images to a Database in C# Using Dynamic .NET TWAIN
1 Jul 2014 by Raghava jogu
Hi Guys,I am not able to scan using WIA after deploying my web application in IIS 7.5 I tried this in Windows 7 and Server 2012.Even "ScanImage" function is not calling . When comment the line "ShowAcquireImage" then application calling ScanImage function otherwise it displays message...
2 Jul 2014 by Chakravarthi Elchuri
First 1.please check that the scanner has WIA drivers 2.The application you are running on the machine has installed WIA drivers.
31 Jul 2017 by anarayane
I want to use WIA objects through Late Binding ,How can I achieve this. What I have tried: Tried loading Assembly through Assembly.LoadFile but I don't want to specify dll path.
31 Jul 2017 by itsmypassion
You can use CreateObject("WIA.CommonDialog")
27 Nov 2017 by __Radik__
I was looking for a way to scan using .net. Found such a script This script works correctly with the Brother 7057 and with the Canon MF 3228 Option Explicit Const ScannerDeviceType = 1 Const ColorIntent = 1 Const wiaFormatJPEG = "{B96B3CAE-0728-11D3-9D7B-0000F81EF32E}" Dim...
27 Nov 2017 by __Radik__
Private WiaItem As WIA.Item = Nothing Private Sub Scan_Load(sender As Object, e As EventArgs) Handles MyBase.Load Try Dim CommonDialog12 As New WIA.CommonDialog Dim Device12a As WIA.Device = CommonDialog12.ShowSelectDevice(WiaDeviceType.ScannerDeviceType,...
30 Nov 2012 by Mendor81
Please have a look here,http://channel9.msdn.com/coding4fun/articles/Look-at-me-Windows-Image-Acquisition[^]that pretty much sums it up tem item = device.ExecuteCommand(CommandID.wiaCommandTakePicture);foreach (string format in item.Formats){ if (format == jpegGuid) { ...
22 Sep 2013 by Rachel Jia
Using a third party TWAIN SDK can help you complete the project much faster. Check out this article on how to use Dynamic .NET TWAIN SDK to scan and upload documents.Scan and Save Images to a Database in C# Using Dynamic .NET TWAIN[^]
25 Jun 2015 by Member 11794147
How i do to size auto-detection of page aquired in WIA for VBA?
16 Nov 2015 by Member 9197067
I gone through C# Wia Scanning in WPF application, see the below url:http://10rem.net/blog/2010/01/08/scanning-images-in-wpf-via-wiaI want to build C# WIA Scanning in WPF application. - Duplex Scan ( WIA 2.0 ), - Support all devices ( required Canon ImageFormula DR-130C ), - Run on...