After Conversion, and while viewing the PDF in Adobe, a message pops up asking to check for upgrades
How can I fix a permission denied error when using the application through a Web page? Other issues related to permissions.
Command Line (sub-folders): How to convert each folder to one pdf file?
How to schedule a task using Windows Task Scheduler (Schedule multiple jobs)
PDF's are black and white whereas the original image is color
A customer provided a Visual Basic code solution and shared it for everyone to benefit. Please use code below with that in mind.
For i = 0 To Dir1.ListCount - 1
p = Dir1.List(i)
f = InStrRev(p, "\")
f = Mid$(p, f + 1)
p = Trim$(p)
f = Trim$(f)
tmp = "ConvertITP.exe /S " + p + "\*.jpg /T " + p + "\" + f +
".PDF /F2 /+"
shellandwait tmp
Next
This can occur with massive image files. It can be corrected by selecting 'NO COMPRESSION' in the OPTIONS button area.
See Change History for version to version details. Also, Please submit a bug if you find one.
"'ConvertITP' is not recognized as an internal or external command, operable program or batch file."
IMPORTANT: To use the command line successfully the operating system will need to know where exactly the application is located. Otherwise, you'll see the following error:
"ConvertITP" is not recognized as an internal or external command, operable program or batch file."
We suggest you do one of the following:
A) Set the path in your operating system's environment variables to the installation location of ConvertITP.EXE. See your operating system's help for setting the path.
B) Create a batch file (a text file whose file name ends in .bat) that uses the fully qualified path of ConvertITP.EXE.
For example the following is a typical batch file:
"C:\Program Files\Softinterface, Inc\Convert Image To PDF\ConvertITP.EXE" /S"c:\in\Coffee.BMP" /T"C:\out\Coffee.PDF" /F0 /V
You may also be able to do something like this in a batch file:
set ConvertITP ="C:\Program Files\Softinterface, Inc\Convert Image To PDF\ConvertITP.EXE"
%ConvertITP% /S"c:\in\Coffee.BMP" /T"C:\out\Coffee.PDF" /F0 /V
One more possibility is to simply change the active folder before calling the application:
CD C:\Program Files\Softinterface, Inc\Convert Image To PDF
ConvertITP /S"c:\in\Coffee.BMP" /T"C:\out\Coffee.PDF" /F0 /V
Also, it is suggested you us fully qualified paths for any files you specify.