감사합니다. 레미 F 이 LaTeX 파일을 사용하여 output.pdf를 가져 와서이 솔루션을 작성할 수 있습니다.
\documentclass{article}
\usepackage[paperwidth=6.38in,paperheight=10.32in,bindingoffset=0in,top=-0.39in,bottom=0in,left=-0.29in,right=0in,footskip=0in]{geometry}
\usepackage{graphicx}
\begin{document}
\pagestyle{empty}
\begin{figure}[t]
\includegraphics[scale=0.233,angle=-4]{output.pdf}
\end{figure}
\end{document}
그때:
pdflatex output_tex.tex
output_tex.pdf를 만듭니다.
프로세스를 자동화 할 수 있도록 자동으로 크기와 마진을 조정할 수 있으면 좋을 것입니다.
편집 : 나는 기울기 각도를 자동으로 얻기 위해 몇 가지 진전을 보았다.
angle=`convert output.pdf -deskew 40 -format "%[deskew:angle]" info:`
내가 자동화하면 다음과 같이된다.
#/bin/bash
name=${1%.*}
ext=${1##*.}
convert -density 300 -quality 100 ${name}.$ext -level 0%,100%,4.0 -black-threshold 75% ${name}_convert.$ext
pdfsandwich -noimage -coo "-normalize -density 300 -black-threshold 75%" ${name}_convert.$ext -o ${name}_ocr.$ext
angle=`convert ${name}_ocr.$ext -deskew 40 -format "%[deskew:angle]" info:`
angle=`echo "${angle}*-1" | bc`
echo " angle = $angle"
sed -e "s/ANGLE/$angle/" -e "s/FILE/${name}_ocr.$ext/" /var/ocr/pdfrotate.tex > ${name}_ocr_straight.tex
pdflatex ${name}_ocr_straight.tex
rm ${name}_convert.$ext ${name}_ocr_straight.tex ${name}_ocr_straight.aux ${name}_ocr_straight.log
/ var / ocr / pdf로 회전 문자 :
\documentclass{article}
\usepackage[paperwidth=6.38in,paperheight=10.32in,bindingoffset=0in,top=-0.39in,bottom=0in,left=-0.29in,right=0in,footskip=0in]{geometry}
\usepackage{graphicx}
\begin{document}
\pagestyle{empty}
\begin{figure}[t]
\includegraphics[scale=0.233,angle=ANGLE]{FILE}
\end{figure}
\end{document}
눈금은 올바르게 보이며 문서에 따라 다릅니다. 하지만 유감스럽게도 필자의 평가판 페이지에 맞춰진 지형 매개 변수는 다른 페이지에는 적합하지 않습니다. 나는 그들을 자동화하는 방법을 모른다. 아마도 원본 페이지와 결과 페이지를 bluring하고 매개 변수로 top 및 left를 사용하여 상관 관계 최적화를 수행하는 것이 좋습니다.