Platform :

Popular Solution Go   Back

VB.NET - How to convert image to pdf format in VB.Net

How to convert image to pdf format in VB.Net Sample

Step 1: Download image viewer cp pro 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. You need change the correct path of your image file  in FileName property.

This sample code save to pdf file.

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

AxImageViewer1.FileName = "c:\yourimage.jpg"
AxImageViewer1.Save "c:\newfile", "pdf"

End Sub