-
Notifications
You must be signed in to change notification settings - Fork 42
user
nhmkdev edited this page Aug 24, 2015
·
22 revisions
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)[user-utf8]
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!