1
0
Fork 0

bookletify now supports trimming borders

abes-patch-1
Francesco Baldino 1 year ago
parent 76ceb6dfb8
commit 9f78497676

@ -12,11 +12,7 @@ def main():
with the size of half a page. Especially useful to print pdfs to A5 with the size of half a page. Especially useful to print pdfs to A5
size on A4 paper""" size on A4 paper"""
parser = argparse.ArgumentParser( parser = argparse.ArgumentParser(prog=PROGRAM_NAME, description=DESCRIPTION)
prog=PROGRAM_NAME,
description=DESCRIPTION
)
parser.add_argument('filename') parser.add_argument('filename')
parser.add_argument('-q', '--quiet', parser.add_argument('-q', '--quiet',
action='store_true', action='store_true',
@ -28,13 +24,33 @@ def main():
metavar='SIZE', metavar='SIZE',
help="""set final paper size. Possible values: 'A0', help="""set final paper size. Possible values: 'A0',
..., 'A8' or 'C4'. Default value is 'A4'""") ..., 'A8' or 'C4'. Default value is 'A4'""")
parser.add_argument('-b', '--binding-margin', parser.add_argument('-b', '--binding-margin',
default=10, default=10,
type=float, type=float,
metavar='MARGIN', metavar='MARGIN',
help="""internal margin for the binding, expressed in help="""internal margin for the binding, expressed in
millimeters. Default value is 10""") millimeters relative to the final paper size (ie:
half of the height of the paper size specified by
--size). Set to 0 to disable. This setting is
independent to the trim setting, ie: increasing or
decreasing this margin does not trim any content on
the final pdf, the content gets scaled down (or up)
to fit to the final width minus the binding margin.
Default value is 10""")
parser.add_argument('-t', '--trim',
default=[0,0,0,0],
type=float,
nargs=4,
metavar='T',
help="""margins to trim, expressed in millimeters
relative to the original page size, as: top right
bottom left. This setting is independent to the
binding margin, ie: first the trim is applied, then
the trimmed content gets scaled up (or down) to the
full height and width, minus the binding margin.
Changing the trim does not increase or decrease the
final binding margin. A negative trim adds an empty
border on that side. Default value is 0 0 0 0""")
args = parser.parse_args() args = parser.parse_args()
@ -59,8 +75,13 @@ def main():
smallwidth = fullheight / 2 smallwidth = fullheight / 2
smallheight = fullwidth smallheight = fullwidth
# Convert mm to pixels at 72 dpi # Convert mm to pixels at 72 dpi
bindingwidth = args.binding_margin * 72 / float(25.4) bindingwidth = args.binding_margin * 72.0 / 25.4
smallblank = PageObject.create_blank_page(width=smallwidth - bindingwidth, height=smallheight) smallblank = PageObject.create_blank_page(width=smallwidth - bindingwidth, height=smallheight)
tt = args.trim[0] * 72.0 / 25.4
tr = args.trim[1] * 72.0 / 25.4
tb = args.trim[2] * 72.0 / 25.4
tl = args.trim[3] * 72.0 / 25.4
# Read the input # Read the input
reader = PdfReader(input_name) reader = PdfReader(input_name)
@ -80,24 +101,43 @@ def main():
output = PdfWriter() output = PdfWriter()
info("\nRearranging...") info("\nRearranging...")
def merge_srt_page(base, over, angle, tx, ty): def get_scaling(page):
sx = float(smallwidth - bindingwidth) / float(over.mediabox.width) sx = float(smallwidth - bindingwidth) / (float(page.mediabox.width) - tr - tl)
sy = float(smallheight) / float(over.mediabox.height) sy = float(smallheight) / (float(page.mediabox.height) - tt - tb)
t = Transformation().scale(sx, sy).rotate(angle). translate(tx, ty) return (sx, sy)
over.add_transformation(t)
base.merge_page(over)
m = len(pages) m = len(pages)
for i in range(int(m / 2)): for i in range(int(m / 2)):
prog(i, int(m / 2)) prog(i, int(m / 2))
new_page = PageObject.create_blank_page(width=fullwidth, height=fullheight) new_page = PageObject.create_blank_page(width=fullwidth, height=fullheight)
if i % 2 == 0: if i % 2 == 0:
merge_srt_page(new_page, pages[m - 1 - i], -90, 0, fullheight) (sx, sy) = get_scaling(pages[m-1-i])
merge_srt_page(new_page, pages[i], - 90, 0, smallwidth - bindingwidth) t = Transformation().scale(sx, sy).rotate(-90).translate(-tb * sy, fullheight + tl * sx)
pass pages[m-1-i].add_transformation(t)
pages[m-1-i].cropbox.upper_right = (smallheight, fullheight)
pages[m-1-i].cropbox.lower_left = (0, smallwidth + bindingwidth)
new_page.merge_page(pages[m-1-i])
(sx, sy) = get_scaling(pages[i])
t = Transformation().scale(sx, sy).rotate(-90).translate(-tb * sy, smallwidth - bindingwidth + tl * sx)
pages[i].add_transformation(t)
pages[i].cropbox.upper_right = (smallheight, smallwidth - bindingwidth)
pages[i].cropbox.lower_left = (0, 0)
new_page.merge_page(pages[i])
else: else:
merge_srt_page(new_page, pages[m - 1 - i], 90, smallheight, smallwidth + bindingwidth) (sx, sy) = get_scaling(pages[m-1-i])
merge_srt_page(new_page, pages[i], 90, smallheight, 0) t = Transformation().scale(sx, sy).rotate(90).translate(smallheight + tb * sy, smallwidth + bindingwidth - tl * sx)
pages[m-1-i].add_transformation(t)
pages[m-1-i].cropbox.upper_right = (smallheight, fullheight)
pages[m-1-i].cropbox.lower_left = (0, smallwidth + bindingwidth)
new_page.merge_page(pages[m-1-i])
(sx, sy) = get_scaling(pages[i])
t = Transformation().scale(sx, sy).rotate(90).translate(smallheight + tb * sy, 0 - tl * sx)
pages[i].add_transformation(t)
pages[i].cropbox.upper_right = (smallheight, smallwidth - bindingwidth)
pages[i].cropbox.lower_left = (0, 0)
new_page.merge_page(pages[i])
output.add_page(new_page) output.add_page(new_page)
prog(int(m/2), int(m/2)) prog(int(m/2), int(m/2))

Loading…
Cancel
Save