-
Notifications
You must be signed in to change notification settings - Fork 42
user
I recommend reading through the Tutorials.
- 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
- Create cards with non-English characters
This section is a work in progress as I port the tutorials over from the other site.
- References Basic
- References Defines
- Overrides
- Working without a Reference
- Data Referencing with Parameters
- Definition Variables and Logic
- Basic Font Manipulation
- Inline Images
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!