Universal Document Converter is virtual printer software that saves any document you print as an image file. Below is a source code example that can help you to accomplish your task with Universal Document Converter.
Please let us know if you cannot find the solution you need.
' 1) Install Universal Document Converter 3.0 or above on your PC'' 2) Open your project in Microsoft Visual Basic.NET'' 3) In Visual Basic main menu press "Project->Add Reference..."'' 4) In "Add Reference" window press "Browse..." button and select' UDCWrapper.dll file. By default this file should be in folder' "C:\Program Files\Universal Document Converter\SDK\bin"'' Universal Document Converter COM interface is ready to use now!Private Sub GetDefaultProfile()
Dim UDCPrinter As New UDCWRAPPERLib.Printer
Dim Name As String
UDCPrinter.PrinterName = "Universal Document Converter"
Name = UDCPrinter.DefaultProfile
Call MsgBox(Name, vbOKOnly, "Default Profile Name")
End Sub