summaryrefslogtreecommitdiff
path: root/docs/coversizing.py
blob: cb8476acb9ab7aa0aef6eb97a1b0323d59a20ec0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# see https://www.createspace.com/Products/Book/#content4

page_count = 605
bleed = .125
spine_width = .002252 * page_count
trim_width = 7.5
trim_height = 9.25
min_cover_width = bleed + trim_width + spine_width + trim_width + bleed
min_cover_height = bleed + trim_height + bleed

print "spine width ", spine_width
print "min cover width ", min_cover_width
print "min cover height ", min_cover_height