.
.
.
hello everybody
I want quick help please
I have a simple project in vb.net to Scan paper
but I want the Image of the paper be bigger than tha real size with high quality for pixel because I want the text of the paper and it should be good quality for pixel to be the font clear
I use ( Scanner pro control ) and this is my code
.
.
hello everybody
I want quick help please
I have a simple project in vb.net to Scan paper
but I want the Image of the paper be bigger than tha real size with high quality for pixel because I want the text of the paper and it should be good quality for pixel to be the font clear
I use ( Scanner pro control ) and this is my code
HTML Code:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
AxScanner1.SelectImageSourceByIndex(0)
AxScanner1.DuplexEnabled = True
AxScanner1.FeederEnabled = True
AxScanner1.DPI = 96
AxScanner1.PixelType = 444
AxScanner1.SetCaptureArea(0, 0, 3.4, 2.2)
AxScanner1.Scan()
AxScanner1.View = 0
AxScanner1.Focus()
End Sub
End Class