Looking for methods to convert JPG and TIFF files to PDF documents that are destined to be printed to a Print through Windows Driver Printer (using a variable with printer name).
Thought of using alambic to merge the JPG image to a new PDF, but TIF is not supported.
option explicit
dim MyPDF, pageRect
set MyPDF = Watch.GetPDFEditObject
set pageRect = CreateObject("AlambicEdit.PdfRect")
pageRect.left = 0
pageRect.right = 612
pageRect.bottom = 0
pageRect.Top = 792
MyPDF.Create("c:\temp\new.pdf")
MyPDF.Pages.Insert 0, pageRect
MyPDF.Pages.Item(0).Merge "c:\temp\orig.jpg", 5, 5, 0, 1
MyPDF.Save true
MyPDF.Close
Do not have Imaging licensed so it is not available to use.