Replies: 3 comments 6 replies
-
|
And the link to Drive-Thru RPG's requirements for print-on-demand Partial requirements -- omitted the Cover and page signatures requirements:
|
Beta Was this translation helpful? Give feedback.
-
|
This is a brew that takes into account bleed and gives a visual indicator of it (which can be removed when sending to a printer). It uses a root variable to set the bleed (in this case, 0.125in) and it adjusts the page size to suit. It increases the size of the page in Homebrewery, and then also decreases the When using this bit of CSS, a user will also need to increase the page size in the browser Print dialog to match. Otherwise it'll just shrink the Homebrewery page down to fit inside a US Letter (or A4) page before creating the PDF. For convenience, here is the CSS:root {
--bleed: .125in;
--bleed-mark: lightblue; /* set to 'transparent' if no mark desired, such as before printing */
}
.page{
width : calc(215mm + var(--bleed) * 2);
height : calc(279.4mm + var(--bleed) * 2);
padding-top: calc(1.4cm + var(--bleed));
padding-right: calc(1.9cm + var(--bleed));
padding-bottom: calc(1.7cm + var(--bleed));
padding-left: calc(1.9cm + var(--bleed));
&:after {
background-image: url(https://i.imgur.com/KS9eJQ2.png);
height: calc(65px + var(--bleed));
width: 110%;
left: -5%;
transform: scaleX(-1);
}
& .pageNumber {
right: calc(2px + var(--bleed));
bottom: calc(22px + var(--bleed));
}
&:before {
content: '';
position: absolute;
outline: 1px solid var(--bleed-mark);
width: calc(100% - var(--bleed) * 2);
height: calc(100% - var(--bleed) * 2);
top: var(--bleed);
left: var(--bleed);
}
} |
Beta Was this translation helpful? Give feedback.
-
|
As mentioned in gitter today:
Step 1 does not make sense, if a client wants to print in one page size, you don't tell them to redo their entire work to another page size, that is very dumb. step 3 just nullifies all work done previously, why bother changing page sizes or exporting if you need to lay everything out in gimp? why have a pdf then? Also the final step of exporting pages as tiff images, may be some industry standard that i have not heard of... |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Here is a place where we can drop notes about the process of actually printing a brew to paper, either on a home printer or sent to a commercial service. This process has some special considerations that I think are worth noting-- maybe to be considered for future features or improvements, but also just as a resource for any users who might want to go down this path.
If you, reading this, have ever sent your Homebrewery document to a commercial printer (either local shop or online service), please let us know here how the experience went! I'd personally love to know the pain points and hot tips you might have.
For now, here is the first actual experience I've heard from a user about the process:
The user printed a shorter adventure booklet. Here is the result:
From the user's adventure, on Itch.io here
Beta Was this translation helpful? Give feedback.
All reactions