-
Notifications
You must be signed in to change notification settings - Fork 208
/
convert.go
90 lines (84 loc) · 2.31 KB
/
convert.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package main
import (
"fmt"
"os"
"path/filepath"
"strings"
"github.com/pkg/errors"
)
func (a *App) PDFConversion(
inFileList []string,
outFile string,
dpi int,
isMerge bool,
sortMethod string,
sortDirection string,
srcType string,
dstType string,
paperSize string,
orientation string,
pages string) error {
logger.Printf("inFileList: %v, outFile: %s, dpi: %d, isMerge: %v, sortMethod: %s, sortDirection: %s, srcType: %s, dstType: %s, pages: %s\n", inFileList, outFile, dpi, isMerge, sortMethod, sortDirection, srcType, dstType, pages)
args := []string{"convert", "--source-type", srcType, "--target-type", dstType}
if pages != "" {
args = append(args, "--page_range", pages)
}
if (srcType == "pdf" && dstType == "png") || (srcType == "pdf" && dstType == "svg") || (srcType == "pdf" && dstType == "image-pdf") {
args = append(args, "--dpi", fmt.Sprintf("%d", dpi))
}
if isMerge {
args = append(args, "--is_merge")
}
if sortMethod != "" {
args = append(args, "--sort-method", sortMethod)
}
if sortDirection != "" {
args = append(args, "--sort-direction", sortDirection)
}
if paperSize != "" {
args = append(args, "--paper-size", paperSize)
}
if orientation != "" {
args = append(args, "--orientation", orientation)
}
if outFile != "" {
args = append(args, "-o", outFile)
}
args = append(args, inFileList...)
logger.Println(args)
return a.cmdRunner(args, "pdf")
}
func (a *App) ConvertPDF2Docx(
inFile string,
outFile string,
) error {
logger.Printf("inFile: %s, outFile: %s\n", inFile, outFile)
path, err := os.Executable()
if err != nil {
err = errors.Wrap(err, "")
logger.Errorln("Error:", err)
return err
}
path = filepath.Join(filepath.Dir(path), "convert.py")
args := []string{path, "--source-type", "pdf", "--target-type", "docx"}
if outFile != "" {
args = append(args, "-o", outFile)
}
args = append(args, inFile)
logger.Println(args)
return a.cmdRunner(args, "python")
}
// Pandoc convert
func (a *App) PandocConvert(
inFile string,
outFile string,
dstType string,
) error {
logger.Printf("inFile: %s, outFile: %s, dstType: %s\n", inFile, outFile, dstType)
if outFile == "" {
outFile = strings.TrimSuffix(inFile, filepath.Ext(inFile)) + dstType
}
args := []string{"-s", "-t", dstType[1:], "-o", outFile, inFile}
logger.Println(args)
return a.cmdRunner(args, "pandoc")
}