Image Viewer CP SDK ActiveX

Image Viewer CP SDK ActiveX 7.5

Platform : Windows 9X, XP, Vista, Window 7

For Windows Developers who need to image viewer in c++, c#, vb.net , vb, delphi, vfp, access.

How to create single page searchable PDF from image in VB.Net Sample

Step 1: Download image viewer cp ActiveX setup disk and installed it.

Step 2: Create New Visual Basic Project, select Windows Application.

Step 3: Add a buttons into the form.

Step 4: Add following code in buttons click event. Assume you have source.jpg in c:\

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

AxImageViewer1.FileName= "c:\source.jpg"
iResult=AxImageViewer1.OCR2SearchablePDF("c:\searchablepdf.tif", 0,"dictfiles")


End
Sub