Running on a Windows Server? Click here for common issues and solutions.
When Converting using the 'Convert Doc' method, the output PDF spacing between paragraphs is off.
How can I fix a permission denied error when using the application through a Web page? Other issues related to permissions.
How to schedule a task using Windows Task Scheduler (Schedule multiple jobs)
How To Run A Scheduled Task While Logged Out
Can I get an ERRORLEVEL or ERRORCODE when using the command line?
Apple MAC, can you run it on this operating system?
How do I use PERL script with it?
Any Other Known Bugs or Issues?
Can this application run on Linux?
Unable to see mapped drives from within software
There are several generations of the PDF
format. For example, version 1.5 was released with Adobe Acrobat v6.0.
Convert Image to PDF uses the previous generation (v1.4). There are very few
changes to the version 1.5, but some are quite significant. We do not plan
on changing to the v1.5 PDF format for a couple of reasons. The first is that
the imaging portion of the PDF format has only changed slightly in version
1.5. The most notable change is that they've added support for JPEG 2000.
The second major change in the PDF format is a new compression algorithm they
developed. It is mainly a text compression routine. This is the first version
of the PDF format that is NOT backwards compatible. All other versions
(1.0-1.4) can be viewed or printed in many of their Acrobat Reader programs.
If this compression is used, the end viewer must be Acrobat Reader v6.0 or
above.
Back to Top
For 'Convert Document to Image' version 3.01 (6/1/2012) and above, there is one undocumented setting you can try. Add the following line immediately below [frmMain] within the CDTI_SearchHistory.INI file:
bOverrideTopBottomParagraphDistance=FALSE
To get it back to the original setting, you can change the line above to:
bOverrideTopBottomParagraphDistance=TRUE
Another thing to try if your main issue is not getting
everything on one page and the above doesn't work is: Run
the user interface, click on the Advanced Options
button and enable the Enforce Page
and Document Settings option. Then try decreasing the
top and bottom margins.
Back to Top
Yes, you can. Use the /P switch to get an error code. Here is a sample batch file.
@Echo off
Set CDTI="C:\Program Files\Softinterface, Inc\Convert Document To
Image\CDTI.EXE"
%CDTI% /S C:\in\simple.docx /T "C:\in\DELME\Out.JPG" /1 * /4 100 /L
"C:\in\LOG-FILE.LOG" /P
ECHO. The current errorlevel is %ERRORLEVEL%
IF %ERRORLEVEL% NEQ 0 goto Label_ERROR_OCCURRED
IF %ERRORLEVEL% EQU 0 goto Label_ECHO_SUCCESS
:Label_ECHO_SUCCESS
ECHO Success!
Goto Label_CLEANUP
:Label_ERROR_OCCURRED
ECHO AN ERROR OCCURRED SEE LOG-FILE.LOG
:Label_CLEANUP
pause
See
Revisions above for version to version details. Also, Please
submit a bug
if you find one.
Back to Top