Skip to content

Commit d710828

Browse files
committed
Generate BADGES
0 parents  commit d710828

File tree

52 files changed

+172
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+172
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
attendees.csv
2+
.DS_Store
3+
Badge-*.pdf

BadgeTemplate.pdf

300 KB
Binary file not shown.

BadgeTemplate.pxd/QuickLook/Icon.tiff

6.12 KB
Binary file not shown.
382 KB
Binary file not shown.
52.4 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>backingScale</key>
6+
<real>1</real>
7+
<key>mode</key>
8+
<integer>0</integer>
9+
<key>shapeSelectionFilename</key>
10+
<string>shapeSelection</string>
11+
<key>size</key>
12+
<data>
13+
NC10UHpTVFAQAAAAQJEwAAAAAABAheAAAAAAAA==
14+
</data>
15+
<key>softness</key>
16+
<real>0.0</real>
17+
<key>timestamp</key>
18+
<real>574850257.67378604</real>
19+
<key>transform</key>
20+
<data>
21+
NC10UHNuclQwAAAAP/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/AAAAAAAAAAAAAAAAAA
22+
AAAAAAAAAAAA
23+
</data>
24+
<key>version</key>
25+
<integer>1</integer>
26+
</dict>
27+
</plist>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>backingScale</key>
6+
<real>1</real>
7+
<key>pathFilename</key>
8+
<string>path</string>
9+
<key>version</key>
10+
<integer>1</integer>
11+
</dict>
12+
</plist>
Binary file not shown.

BadgeTemplate.pxd/metadata.info

436 KB
Binary file not shown.

LiberationSans-Regular.ttf

342 KB
Binary file not shown.

generate-badges.groovy

+130
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
@Grapes(
2+
@Grab(group='org.apache.pdfbox', module='pdfbox', version='2.0.8')
3+
)
4+
import java.io.File;
5+
import java.io.IOException;
6+
7+
import org.apache.pdfbox.pdmodel.PDDocument;
8+
import org.apache.pdfbox.pdmodel.PDPage;
9+
import org.apache.pdfbox.pdmodel.PDPageContentStream;
10+
import org.apache.pdfbox.pdmodel.font.PDType1Font;
11+
import org.apache.pdfbox.pdmodel.font.PDType0Font;
12+
13+
final String DELIMITER = ";"
14+
15+
import groovy.transform.EqualsAndHashCode
16+
17+
@EqualsAndHashCode
18+
class Attendee {
19+
String name
20+
String twitter
21+
String company
22+
}
23+
24+
List<Attendee> attendees = []
25+
def actualCount = 0
26+
27+
new File('attendees.csv').eachLine { line ->
28+
String[] arr = line.split(DELIMITER)
29+
Attendee attendee = new Attendee()
30+
if (arr.size() >= 1) {
31+
attendee.name = arr[0]
32+
}
33+
if (arr.size() >= 2) {
34+
attendee.twitter = arr[1]
35+
}
36+
if (arr.size() >= 3) {
37+
attendee.company = arr[2]
38+
}
39+
attendees << attendee
40+
}
41+
attendees = attendees.unique()
42+
43+
44+
final int PAGE_SIZE = 8
45+
final int COMPANY_Y_OFFSET = 50
46+
final int TWITTER_Y_OFFSET = 25
47+
final int X_OFFSET = 150
48+
final int Y_OFFSET = 250
49+
final int NAME_FONT_SIZE = 22
50+
final int TWITTER_FONT_SIZE = 18
51+
final int COMPANY_FONT_SIZE = 18
52+
53+
int FIRST_COLUMN = 15
54+
int SECOND_COLUMN = 275
55+
int BOTTOM_OFFSET = 20
56+
int BADGESIZE = 180
57+
List<List<Integer>> positions = [
58+
[FIRST_COLUMN, BOTTOM_OFFSET + BADGESIZE],
59+
[SECOND_COLUMN,BOTTOM_OFFSET + BADGESIZE],
60+
[FIRST_COLUMN, BOTTOM_OFFSET + (BADGESIZE * 2)],
61+
[SECOND_COLUMN, BOTTOM_OFFSET + (BADGESIZE * 2)],
62+
[FIRST_COLUMN, BOTTOM_OFFSET + (BADGESIZE * 3)],
63+
[SECOND_COLUMN, BOTTOM_OFFSET + (BADGESIZE * 3)],
64+
[FIRST_COLUMN, BOTTOM_OFFSET + (BADGESIZE * 4)],
65+
[SECOND_COLUMN, BOTTOM_OFFSET + (BADGESIZE * 4)],
66+
]
67+
68+
int count = 1
69+
for (i = 0; i < attendees.size(); i += PAGE_SIZE) {
70+
List<Attendee> attendeeBatch = attendees.subList(i, Math.min(attendees.size(), i+PAGE_SIZE))
71+
File badgeTemplate = new File('BadgeTemplate.pdf')
72+
PDDocument document = PDDocument.load(badgeTemplate);
73+
PDType0Font font = PDType0Font.load(document, new File('LiberationSans-Regular.ttf'))
74+
PDPage page = document.getPage(0);
75+
PDPageContentStream contentStream = new PDPageContentStream(document, page, PDPageContentStream.AppendMode.APPEND, true, true);
76+
for (int attendeeCount = 0; attendeeCount < attendeeBatch.size(); attendeeCount++) {
77+
Attendee attendee = attendeeBatch[attendeeCount]
78+
int nameX = positions[attendeeCount][0]
79+
int nameY = positions[attendeeCount][1]
80+
if (attendee.name) {
81+
82+
contentStream.with {
83+
beginText()
84+
setFont(font, NAME_FONT_SIZE);
85+
newLineAtOffset(nameX, nameY)
86+
String name = ""
87+
int maxLength = 18
88+
for (String word : attendee.name.split(' ')) {
89+
name += word + " "
90+
if (name.length() >= maxLength) {
91+
break
92+
}
93+
}
94+
showText(name);
95+
endText()
96+
}
97+
}
98+
if (attendee.twitter) {
99+
int twitterX = nameX
100+
int twitterY = nameY - TWITTER_Y_OFFSET
101+
contentStream.with {
102+
beginText()
103+
setFont(font, TWITTER_FONT_SIZE);
104+
newLineAtOffset(twitterX, twitterY)
105+
showText(attendee.twitter.startsWith('@') ? attendee.twitter : "@${attendee.twitter}");
106+
endText()
107+
}
108+
}
109+
if (attendee.company) {
110+
int companyX = nameX
111+
int companyY = nameY - COMPANY_Y_OFFSET
112+
contentStream.with {
113+
beginText()
114+
setFont(font, COMPANY_FONT_SIZE);
115+
newLineAtOffset(companyX, companyY)
116+
showText(attendee.company);
117+
endText()
118+
}
119+
}
120+
}
121+
contentStream.close();
122+
document.save(new File("Badge-${count++}.pdf"))
123+
document.close()
124+
}
125+
126+
127+
128+
129+
130+

0 commit comments

Comments
 (0)