-
Notifications
You must be signed in to change notification settings - Fork 41
user
- Create a Layout for a given size (example a poker card) - see below!
- Generate files for use with The Game Crafter: CardMaker Game Crafter Guide
- Export cards for use with Tabletop Simulator - See Users Tabletop Simulator
- Create cards with non-English characters
- Run CardMaker with Linux
This section is a work in progress (your feedback helps!).
- References Basic
- References Defines
- References Overrides
- References - Working without a Reference
- References - Data Referencing with Parameters
- References - Google
See the Card_Maker.pdf
(manual) included with every release for much more information.
This is a common issue users face when creating a new layout.
Questions you need answers to before continuing:
- What size of card / component do you want to make? (you'll need the value in inches)
- What is the dots per inch (DPI) you are targeting?
If you do not know how to answer the second question I would strongly recommend you assume 300DPI. This is a standard DPI that most printers should be able to output. If you plan to export to PDF for sharing/printing 300DPI will also work fine and give you fine quality output.
You will need to calculate the width and height based in the size and DPI.
Pixel width = (width of card in inches) x DPI
Pixel height = (height of card in inches) x DPI
Poker cards are 2.5" wide and 3.5" high.
So with a DPI of 300:
750 = 2.5 x 300
1050 = 3.5 x 300
Good Luck!