Quote:
Originally Posted by nrapallo
No, problem!
Consider posting a sample conversion/extract and the settings you used to create it, when you're done. 
|
Sure!
Here is the batch .bat i created to make the conversions :
(took a sample and changed the settings)
Code:
@echo off
cls
rem ============== batch processing options
set LOC=C:\Program Files (x86)\PDFRead
set OPT=-p prs505-p -i pdf -c "Eyewitness Guides" -f "lrf" -m "portrait" -r "none" --dpi "600" --colorspace "rgb" --colors "256" --optimize
rem ============== do not change below this line
set DIR=%~dp0
if not '%1' == '' set DIR=%1
for %%I in (%DIR%\*.pdf) do title PDFRead: converting "%%~nI" & "%LOC%\bin\pdfread" %OPT% -t "%%~nI" -o "%%~dpnI" "%%~fI"
rem ==== uncomment the line below and comment the above one to debug (by adding/removing the rem)
rem ==== for %%I in (%DIR%\*.pdf) do title PDFRead: converting "%%~nI" & echo "%LOC%\bin\pdfread" %OPT% -t "%%~nI" -o "%%~dpnI" "%%~fI"
title PDFRead: batch conversion complete.
pause
for a pic whats the best way to extract one page from a lrf? Was thinking print screen/photo shop but you ll loose all the quality by doing that.