-
Notifications
You must be signed in to change notification settings - Fork 3
/
doc.go
50 lines (34 loc) · 789 Bytes
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* Copyright (c) 2014 Stefan Schroeder
*
* Use of this source code is governed by a BSD-style
* license that can be found in the LICENSE file
*/
/*
Package gocal implements a PDF calendar generator. It consists of a
library gocal and a standalone tool gocalendar.
* Inspired by pcal
* Simplicity: Create a nice calendar with minimum effort.
* Week number
* Moonphase
* Add events from configuration file
* Set papersize
* Choose fonts (limited)
* Several languages
* Day of year
* Background image
* Photo calendar
* More
For build instructions, test instructions, examples, see
README.md.
EXAMPLE
package main
import (
"github.com/StefanSchroeder/Gocal"
)
func main() {
g := gocal.New(1,12,2010)
g.CreateCalendar("test-example01.pdf")
}
*/
package gocal