aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/llgcode/draw2d/draw2dpdf/fileutil.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/llgcode/draw2d/draw2dpdf/fileutil.go')
-rw-r--r--vendor/github.com/llgcode/draw2d/draw2dpdf/fileutil.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/github.com/llgcode/draw2d/draw2dpdf/fileutil.go b/vendor/github.com/llgcode/draw2d/draw2dpdf/fileutil.go
new file mode 100644
index 0000000..349545d
--- /dev/null
+++ b/vendor/github.com/llgcode/draw2d/draw2dpdf/fileutil.go
@@ -0,0 +1,11 @@
+// Copyright 2015 The draw2d Authors. All rights reserved.
+// created: 26/06/2015 by Stani Michiels
+
+package draw2dpdf
+
+import "github.com/jung-kurt/gofpdf"
+
+// SaveToPdfFile creates and saves a pdf document to a file
+func SaveToPdfFile(filePath string, pdf *gofpdf.Fpdf) error {
+ return pdf.OutputFileAndClose(filePath)
+}