我正在尝试使用Tesseract将PDF转换为OCR的TIFF文件。截至目前,因为我在Windows上运行,我试图将转换编写为批处理文件。这就是我到目前为止所做的:
@echo off
:start
SETLOCAL EnableDelayedExpansion
SET IMCONV="C:\Program Files\ImageMagick\convert.exe"
set /p INPUTF=Input file(enter done if done)?
if %INPUTF%==done goto end
set /p OUTPUTF=Output file?
%IMCONV% -density 300 %INPUTF% -depth 8 %OUTPUTF%
goto start
:end
当我运行此操作时,我得到convert.exe:UnableToOpenBlob
并且目录@error/blob.c/OpenBlob/2695
中没有文件。知道什么是错的吗?
在接受Mark Setchell的建议后,上述问题已修复,但现在我收到错误convert.exe: UnableToOpenConfigureFile 'delegates.xml' @warning/configure.c/GetConfigureOptions/706