Reputation: 12747
I'm kind of new to all the PDF crop/bleed/trim technicalities... but what I have is business cards in PDF format of about 9 x 5 cm. I just want to add the bleed and crop marks, or if not bleed margins then at least just the crop marks, at specified mm from the edges.
Upvotes: 3
Views: 3459
Reputation: 101
try with latex
create file foobar-crop.tex
\documentclass{article}
\usepackage{pdfpages}
\usepackage[paperwidth=9cm,paperheight=5cm]{geometry}
\usepackage[cam,a4,center,pdftex]{crop}
\begin{document}
\includepdf[pages=-]{foobar.pdf}
\end{document}
compiling with
$ pdflatex foobar-crop.tex
will get you foobar-crop.pdf.
from: http://www.thbimage.com/pdf/adding_crop_marks_to_pdf_pan_2008_10_08_21_47_33_lutrina_.html
Upvotes: 6