Board logo

标题: [文件操作] 如何用BAT批处理命令批量提取文件夹内所有PDF最后一页另存为照片 [打印本页]

作者: 952C    时间: 2023-11-9 11:14     标题: 如何用BAT批处理命令批量提取文件夹内所有PDF最后一页另存为照片

如何用BAT批处理命令批量提取文件夹内所有PDF最后一页另存为照片
作者: Batcher    时间: 2023-11-9 15:49

回复 1# 952C


请参考Q-04把test.bat文件保存为ANSI编码:
https://mp.weixin.qq.com/s/Koje4FufWxWBs7ioDy_LJA
  1. @echo off
  2. REM 1. 下载并安装命令行工具 PDFtk Server
  3. REM https://www.pdflabs.com/tools/pdftk-server/
  4. REM 2. 请根据自己电脑实际情况设置该路径
  5. set "path=C:\Program Files (x86)\PDFtk Server\bin;%path%"
  6. REM 3. 指定待处理的pdf文件所在的文件夹
  7. set "TargetFolder=C:\Users\Administrator\Desktop\PDF"
  8. set "SubFolderPDF=LastPage"
  9. set "SubFolderPic=PDF2Pic"
  10. cd /d "%TargetFolder%"
  11. md "%SubFolderPDF%" 2>nul
  12. md "%SubFolderPic%" 2>nul
  13. for /f "delims=" %%i in ('dir /b /a-d *.pdf') do (
  14.     echo %%i
  15.     pdftk.exe "%%i" cat r1 output "%SubFolderPDF%\%%i"
  16. )
  17. REM 1、下载并安装 Ghostscript 这个命令行工具
  18. REM https://www.ghostscript.com/releases/gsdnld.html
  19. REM 2、根据自己电脑实际安装路径设置以下临时环境变量
  20. set "path=C:\Program Files\Ghostscript\gs10.00.0\bin;%path%"
  21. for /f "delims=" %%i in ('dir /b /a-d "%SubFolderPDF%\*.pdf"') do (
  22.     echo %SubFolderPDF%\%%i
  23.     gswin64c.exe -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dGridFitTT=2 -dUseCropBox -dTextAlphaBits=4 -dGraphicsAlphaBits=4 -r300 -sDEVICE=jpeg -dJPEGQ=100 -sOutputFile="%SubFolderPic%\%%~ni.jpg" "%SubFolderPDF%\%%i"
  24. )
复制代码

作者: 九五二C    时间: 2023-11-12 21:09

已解决,谢谢,各位学习/使用时记得下载两个工具




欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2